min method

E min()

Returns min value of values.

Implementation

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