minWith method

T? minWith(
  1. Comparator<T> comparator
)

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

Implementation

T? minWith(Comparator<T> comparator) {
  final i = iterator();
  if (!i.hasNext()) return null;
  var min = i.next();
  while (i.hasNext()) {
    final e = i.next();
    if (comparator(min, e) > 0) {
      min = e;
    }
  }
  return min;
}