UNPKG

mnemonist

Version:

Curated collection of data structures for the JavaScript/TypeScript.

5 lines (3 loc) 258 B
import {IArrayLike} from '../utils/types'; export function inplaceInsertionSort(array: IArrayLike, lo: number, hi: number): IArrayLike; export function inplaceInsertionSortIndices(array: IArrayLike, indices: IArrayLike, lo: number, hi: number): IArrayLike;