bisectRight method

int bisectRight(
  1. E item, {
  2. Comparator<E>? compare,
  3. int low = 0,
  4. int? high,
})

Similar to bisectLeft, but returns an insertion point which comes after (to the right of) any existing entries of item in the list.

Implementation

int bisectRight(E item, {Comparator<E>? compare, int low = 0, int? high}) {
  return funcs.bisect_right(this, item, compare: compare, lo: low, hi: high);
}