Function tract_hir::internal::tract_itertools::max[][src]

pub fn max<I>(iterable: I) -> Option<<I as IntoIterator>::Item> where
    I: IntoIterator,
    <I as IntoIterator>::Item: Ord

Return the maximum value of the iterable.

IntoIterator enabled version of i.max().

use itertools::max;

assert_eq!(max(0..10), Some(9));