minWith method

E minWith(
  1. Comparator<E> comparator
)

Returns the first element having the smallest value according to the provided comparator or null if there are no elements.

Implementation

E minWith(Comparator<E> comparator) => _minMaxWith(-1, comparator);