min method

int min()

Implementation

int min() =>
    reduceOr(0, (value, element) => value < element ? value : element);