Function itertools::free::min
[−]
[src]
pub fn min<I>(iterable: I) -> Option<I::Item> where I: IntoIterator, I::Item: Ord
Return the minimum value of the iterable.
IntoIterator
enabled version of i.min()
.
use itertools::free::min; assert_eq!(min(0..10), Some(0));Run