lowerBound method
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 ?? (a, b) => a.compareTo(b)));