lowerBound method

Coral<int> lowerBound(
  1. E element,
  2. int compare(
    1. E a,
    2. E b
    )
)

Returns the index where element should be in this sorted list.

Implementation

Coral<int> lowerBound(E element, int Function(E a, E b) compare) => _listCoral
    .map((list) => col.ListExtensions(list).lowerBound(element, compare));