• Home
  • Raw
  • Download

Lines Matching defs:Sized

378               Self: Sized  in interleave()
396 Self: Sized in interleave_shortest()
413 fn intersperse(self, element: Self::Item) -> Intersperse<Self> in intersperse()
435 where Self: Sized, in intersperse_with()
470 Self: Sized in zip_longest()
483 Self: Sized in zip_eq()
513 Self: Sized in batching()
554 where Self: Sized, in group_by()
589 fn chunks(self, size: usize) -> IntoChunks<Self> in chunks()
728 where Self: Sized, in tee()
753 where Self: Sized in step()
766 where Self: Sized, in map_into()
775 where Self: Iterator<Item = Result<T, E>> + Sized, in map_results()
793 where Self: Iterator<Item = Result<T, E>> + Sized, in map_ok()
811 where Self: Iterator<Item = Result<T, E>> + Sized, in filter_ok()
829 where Self: Iterator<Item = Result<T, E>> + Sized, in filter_map_ok()
850 where Self: Sized, in merge()
874 where Self: Sized, in merge_by()
912 Self: Sized in merge_join_by()
934 fn kmerge(self) -> KMerge<<Self::Item as IntoIterator>::IntoIter> in kmerge()
965 where Self: Sized, in kmerge_by()
985 where Self: Sized, in cartesian_product()
1019 fn multi_cartesian_product(self) -> MultiProduct<<Self::Item as IntoIterator>::IntoIter> in multi_cartesian_product()
1057 where Self: Sized, in coalesce()
1079 where Self: Sized, in dedup()
1101 where Self: Sized, in dedup_by()
1122 fn dedup_with_count(self) -> DedupWithCount<Self> in dedup_with_count()
1145 where Self: Sized, in dedup_by_with_count()
1171 where Self: Sized, in unique()
1197 where Self: Sized, in unique_by()
1339 fn combinations(self, k: usize) -> Combinations<Self> in combinations()
1366 fn combinations_with_replacement(self, k: usize) -> CombinationsWithReplacement<Self> in combinations_with_replacement()
1412 fn permutations(self, k: usize) -> Permutations<Self> in permutations()
1449 where Self: Sized, in powerset()
1473 where Self: Sized, in pad_using()
1498 fn with_position(self) -> WithPosition<Self> in with_position()
1518 where Self: Sized, in positions()
1535 where Self: Sized, in update()
1634 where Self: Sized, in all_equal()
1659 where Self: Sized in dropping()
1683 where Self: Sized, in dropping_back()
1712 Self: Sized, in foreach()
1731 where Self: Sized, in concat()
1740 fn collect_vec(self) -> Vec<Self::Item> in collect_vec()
1851 fn format(self, sep: &str) -> Format<Self> in format()
1890 where Self: Sized, in format_with()
2006 Self: Sized, in fold1()
2061 Self: Sized, in tree_fold1()
2157 fn fold_while<B, F>(&mut self, init: B, mut f: F) -> FoldWhile<B> in fold_while()
2200 fn sum1<S>(mut self) -> Option<S> in sum1()
2228 fn product1<P>(mut self) -> Option<P> in product1()
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()
2487 where Self: Sized, in partition_map()
2519 where Self: Iterator<Item=(K, V)> + Sized, in into_group_map()
2571 where Self: Iterator<Item=(K, V)> + Sized, in into_grouping_map()
2629 fn minmax(self) -> MinMaxResult<Self::Item> in minmax()
2646 fn minmax_by_key<K, F>(self, key: F) -> MinMaxResult<Self::Item> in minmax_by_key()
2660 fn minmax_by<F>(self, mut compare: F) -> MinMaxResult<Self::Item> in minmax_by()
2690 where Self: Sized, Self::Item: Ord in position_max()
2717 fn position_max_by_key<K, F>(self, mut key: F) -> Option<usize> in position_max_by_key()
2745 fn position_max_by<F>(self, mut compare: F) -> Option<usize> in position_max_by()
2773 where Self: Sized, Self::Item: Ord in position_min()
2800 fn position_min_by_key<K, F>(self, mut key: F) -> Option<usize> in position_min_by_key()
2828 fn position_min_by<F>(self, mut compare: F) -> Option<usize> in position_min_by()
2880 fn position_minmax(self) -> MinMaxResult<usize> in position_minmax()
2926 fn position_minmax_by_key<K, F>(self, mut key: F) -> MinMaxResult<usize> in position_minmax_by_key()
2969 fn position_minmax_by<F>(self, mut compare: F) -> MinMaxResult<usize> in position_minmax_by()
2997 fn exactly_one(mut self) -> Result<Self::Item, ExactlyOneError<Self>> in exactly_one()
3031 fn multipeek(self) -> MultiPeek<Self> in multipeek()
3054 Self: Sized, in counts()