rust/src/libcoretest
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
..
fmt std: Clean out deprecated APIs 2016-03-12 12:31:13 -08:00
hash std: use siphash-1-3 for HashMap 2016-06-29 16:08:32 -07:00
num std: Stabilize APIs for the 1.11.0 release 2016-07-03 10:49:01 -07:00
any.rs Implement Any for unsized types 2016-01-14 23:02:32 -08:00
array.rs
atomic.rs
cell.rs std: Stabilize APIs for the 1.12 release 2016-08-19 11:59:56 -07:00
char.rs Implement TryFrom<u32> for char 2016-08-29 17:34:02 +02:00
clone.rs Add unused modules to libcoretest 2015-10-16 21:15:23 +02:00
cmp.rs
intrinsics.rs Add unused modules to libcoretest 2015-10-16 21:15:23 +02:00
iter.rs Introduce max_by/min_by on iterators 2016-08-20 17:30:48 +02:00
lib.rs Auto merge of #35856 - phimuemue:master, r=brson 2016-09-02 21:02:41 -07:00
mem.rs Support 16-bit pointers as well as i/usize 2016-05-19 13:55:13 -04:00
nonzero.rs
ops.rs
option.rs cleanup int suffixes in libcoretest 2016-03-11 08:42:56 +05:30
ptr.rs Fix the test_variadic_ptr fn on printf-less sys 2016-08-29 22:58:05 +03:00
result.rs
slice.rs Avoid bounds check for slice binary search 2016-01-22 15:08:27 -02:00
str.rs
tuple.rs