Home
last modified time | relevance | path

Searched refs:VecIntoIter (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/itertools/src/
Dfree.rs10 type VecIntoIter<T> = alloc::vec::IntoIter<T>; typedef
237 pub fn sorted<I>(iterable: I) -> VecIntoIter<I::Item> in sorted()
Dlib.rs74 type VecIntoIter<T> = alloc::vec::IntoIter<T>; typedef
2254 fn sorted_unstable(self) -> VecIntoIter<Self::Item> in sorted_unstable()
2289 fn sorted_unstable_by<F>(self, cmp: F) -> VecIntoIter<Self::Item> in sorted_unstable_by()
2322 fn sorted_unstable_by_key<K, F>(self, f: F) -> VecIntoIter<Self::Item> in sorted_unstable_by_key()
2350 fn sorted(self) -> VecIntoIter<Self::Item> in sorted()
2385 fn sorted_by<F>(self, cmp: F) -> VecIntoIter<Self::Item> in sorted_by()
2418 fn sorted_by_key<K, F>(self, f: F) -> VecIntoIter<Self::Item> in sorted_by_key()
2456 fn k_smallest(self, k: usize) -> VecIntoIter<Self::Item> in k_smallest()