lowerBoundBy<K extends Comparable> method
Returns the index where element should be in this sorted list.
Implementation
Coral<int> lowerBoundBy<K extends Comparable<dynamic>>(
E element, K Function(E element) keyOf, [int start = 0, int? end]) =>
_listCoral.map((list) => col.ListExtensions(list).lowerBoundByCompare<K>(
element, keyOf, (a, b) => a.compareTo(b), start, end));