Interface SortedArrayConstructorOptions<T>

An object that specifies characteristics of a sorted container.

interface SortedArrayConstructorOptions<T> {
    comparator?: (a: T, b: T) => number;
    loadFactor?: number;
}

Type Parameters

  • T

    The type of comparable elements.

Properties

comparator?: (a: T, b: T) => number

Function used to determine the order of the elements. It should return a negative number if the first argument is less than the second argument, a positive number if the first argument is greater than the second argument, or a zero otherwise. The comparator should always return a number, and never return NaN. In addition, the comparator has the same requirements as the parameter of Array.prototype.sort (purity, stability, reflexivity, anti-symmetry, and transitivity).

If omitted, the elements are compared with operators <, ===, and >. These operators violate transitivity if the inputs have mixed types or include NaN. See Custom Comparators for more information.

loadFactor?: number

Specifies the load-factor for sorted container sublists. The default load factor of 1000 works well for arrays from tens to tens-of-millions of values. Good practice is to use a value that is the cube root of the list size. With billions of elements, the best load factor depends on your usage. It's best to leave the load factor at the default until you start benchmarking.