Skip to content

Commit

Permalink
Remove free function get
Browse files Browse the repository at this point in the history
A `use itertools::*;` might conflict with such a general function name.
  • Loading branch information
Philippe-Cholet committed May 3, 2024
1 parent 7d8171f commit 6477ac0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/iter_index.rs
Expand Up @@ -17,7 +17,7 @@ mod private_iter_index {
impl Sealed for ops::RangeFull {}
}

/// Used by [`get`] and [`Itertools::get`] to know which iterator
/// Used by [`Itertools::get`] to know which iterator
/// to turn different ranges into.
pub trait IteratorIndex<I>: private_iter_index::Sealed
where
Expand All @@ -28,7 +28,7 @@ where

/// Returns an adapted iterator for the current index.
///
/// Prefer calling [`get`] or [`Itertools::get`] instead
/// Prefer calling [`Itertools::get`] instead
/// of calling this directly.
fn index(self, from: I) -> Self::Output;
}
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Expand Up @@ -154,7 +154,6 @@ pub use crate::concat_impl::concat;
pub use crate::cons_tuples_impl::cons_tuples;
pub use crate::diff::diff_with;
pub use crate::diff::Diff;
pub use crate::iter_index::get;
#[cfg(feature = "use_alloc")]
pub use crate::kmerge_impl::kmerge_by;
pub use crate::minmax::MinMaxResult;
Expand Down

0 comments on commit 6477ac0

Please sign in to comment.