lowerBound method

*<Null safety>*

int lowerBound (E element, [int compare(E, E)])

Implementation

int lowerBound(E element, [int Function(E, E)? compare]) =>
    algorithms.lowerBoundBy<E, E>(
        this, identity, compare ?? compareComparable, element);