devela::_dep::itertools

Function min

pub fn min<I>(iterable: I) -> Option<<I as IntoIterator>::Item> 
where I: IntoIterator, <I as IntoIterator>::Item: Ord,
Available on crate feature dep_itertools only.
Expand description

Return the minimum value of the iterable.

IntoIterator enabled version of Iterator::min.

use itertools::min;

assert_eq!(min(0..10), Some(0));