lowerBound<E> function

*<Null safety>*

int lowerBound <E>(List<E> sortedList, E value, {int compare(E, E)})

Implementation

int lowerBound<E>(List<E> sortedList, E value, {int Function(E, E)? compare}) {
  compare ??= defaultCompare;
  return lowerBoundBy<E, E>(sortedList, identity, compare, value);
}