This project is part of the @thi.ng/umbrella monorepo.
Array / Arraylike utilities.
STABLE - used in production
yarn add @thi.ng/arrays
Package sizes (gzipped): ESM: 1.3KB / CJS: 1.4KB / UMD: 1.4KB
- binarySearch()
- endsWith()
- ensureArray()
- ensureIterable()
- fuzzyMatch()
- isSorted()
- multiSwap()
- peek()
- quickSort()
- shuffle() (w/ custom PRNG support)
- shuffleRange() (w/ custom PRNG support)
- startsWith()
- swap()
- swizzle()
The following predicates can be used to perform predecessor / successor
queries using binarySearch()
.
bsLT()
- Returns index of last item less than search value or -1 if no such values existbsLE()
- Similar tobsLT()
, but for less-than-equals queriesbsGT()
- Returns index of first item greater than search value or -1 if no such values existbsGE()
- Similar tobsGT()
, but for less-than-equals queriesbsEQ()
- Merely syntax sugar, casting any non-found result indices to -1
const src = [10, 20, 30, 40];
bsLT(binarySearch(src, 25))
// 1
// greater-than queries also require the array length
bsGT(binarySearch(src, 25), src.length)
// 2
bsGT(binarySearch(src, 40), src.length)
// -1
Karsten Schmidt
© 2018 - 2020 Karsten Schmidt // Apache Software License 2.0