File tree 2 files changed +2
-6
lines changed
2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ mod private_iter_index {
17
17
impl Sealed for ops:: RangeFull { }
18
18
}
19
19
20
- /// Used by [`get`] and [` Itertools::get`] to know which iterator
20
+ /// Used by [`Itertools::get`] to know which iterator
21
21
/// to turn different ranges into.
22
22
pub trait IteratorIndex < I > : private_iter_index:: Sealed
23
23
where
28
28
29
29
/// Returns an adapted iterator for the current index.
30
30
///
31
- /// Prefer calling [`get`] or [` Itertools::get`] instead
31
+ /// Prefer calling [`Itertools::get`] instead
32
32
/// of calling this directly.
33
33
fn index ( self , from : I ) -> Self :: Output ;
34
34
}
@@ -107,9 +107,6 @@ where
107
107
}
108
108
}
109
109
110
- /// Returns an iterator over a subsection of the iterator.
111
- ///
112
- /// See [`Itertools::get`] for more information.
113
110
pub fn get < I , R > ( iter : I , index : R ) -> R :: Output
114
111
where
115
112
I : IntoIterator ,
Original file line number Diff line number Diff line change @@ -154,7 +154,6 @@ pub use crate::concat_impl::concat;
154
154
pub use crate :: cons_tuples_impl:: cons_tuples;
155
155
pub use crate :: diff:: diff_with;
156
156
pub use crate :: diff:: Diff ;
157
- pub use crate :: iter_index:: get;
158
157
#[ cfg( feature = "use_alloc" ) ]
159
158
pub use crate :: kmerge_impl:: kmerge_by;
160
159
pub use crate :: minmax:: MinMaxResult ;
You can’t perform that action at this time.
0 commit comments