num/num_min_max_utils library

Functions

maxOf(num a, num b) num
Max of two numbers (NumUtils has maxOf with null handling).
maxOfMany(Iterable<num> values) num?
Max of iterable; null if empty.
minOf(num a, num b) num
Min/max of two or N numbers. Roadmap #136. NumUtils already has maxOf(a,b).
minOfMany(Iterable<num> values) num?
Min of iterable; null if empty.