Function core::cmp::min1.0.0[][src]

pub fn min<T: Ord>(v1: T, v2: T) -> T
This is supported on non-crate feature miri-test-libstd or test or doctest only.
Expand description

Compares and returns the minimum of two values.

Returns the first argument if the comparison determines them to be equal.

Internally uses an alias to Ord::min.

Examples

use std::cmp;

assert_eq!(1, cmp::min(1, 2));
assert_eq!(2, cmp::min(2, 2));
Run