Min<E> extension

This extension provides 2 methods to find the min element in the iterable.

on

Methods

min() → E

Available on Iterable<E>, provided by the Min extension

Find the min element.
minBy(Comparator<E> comparator) → E

Available on Iterable<E>, provided by the Min extension

Find the min element.