bisect method
- E element,
- {int compare(
- E,
- E
- int low,
- int high}
Just and alias for bisectRight
.
Implementation
int bisect(E element, {int Function(E, E) compare, int low, int high}) =>
bisectRight(element, compare: compare, low: low, high: high);