deprecated library

Functions

bisectLeftNum(List<num> A, int x, {int lo = 0, int? hi}) num
bisectRightNum(List<num> A, num x, {int lo = 0, int? hi}) num
indexOf<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) int?
Locate the leftmost value exactly equal to x.
indexOfGE<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) int?
Locate leftmost item greater than or equal to x
indexOfGT<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) int?
Locate leftmost value greater than x
indexOfLE<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) int?
Locate rightmost value less than or equal to x.
indexOfLT<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) int?
Locate rightmost value less than x.
insortLeft<T>(List<T> a, T x, {Comparator<T>? compare, int lo = 0, int? hi}) → void
insortRight<T>(List<T> a, T x, {Comparator<T>? compare, int lo = 0, int? hi}) → void
itemGE<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) → T?
itemGT<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) → T?
itemLE<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) → T?
itemLT<T extends Comparable<T>>(List<T> a, T x, {bool dontPanic = false}) → T?

Exceptions / Errors

ItemNotFoundError