rust/src/libcore/iter
bors d128e6bc74 Auto merge of #35856 - phimuemue:master, r=brson
Introduce max_by/min_by on iterators

See https://github.com/rust-lang/rfcs/issues/1722 for reference.

It seems that there is `min`, `max` (simple computation of min/max), `min_by_key`, `max_by_key` (min/max by comparing mapped values) but no `min_by` and `max_by` (min/max according to comparison function). However, e.g. on vectors or slices there is `sort`, `sort_by_key` and `sort_by`.
2016-09-02 21:02:41 -07:00
..
iterator.rs Auto merge of #35856 - phimuemue:master, r=brson 2016-09-02 21:02:41 -07:00
mod.rs Use #[prelude_import] in libcore. 2016-08-24 22:12:23 +00:00
range.rs accumulate vector and assert for RangeFrom and RangeInclusive examples 2016-08-26 11:54:32 -04:00
sources.rs Use #[prelude_import] in libcore. 2016-08-24 22:12:23 +00:00
traits.rs Use #[prelude_import] in libcore. 2016-08-24 22:12:23 +00:00