max method

E max()

Returns max value of values.

Implementation

E max() => isEmpty ? _zero() : reduce(math.max);