Type Alias ArrayMonotonicOptions<T>

ArrayMonotonicOptions<T>: {
    monotonicity: Monotonicity;
    projection: ((item: T) => number);
} | {
    comparator: ((a: T, b: T) => number);
    monotonicity: Monotonicity;
} | {
    monotonicity: Monotonicity;
}

Type Parameters

  • T

    The type of the array elements.