Interface RangeAndOrder<K>

A value range and order.

interface RangeAndOrder {
    lower?: K;
    lowerOpen?: boolean;
    reverse?: boolean;
    upper?: K;
    upperOpen?: boolean;
}

Type Parameters

  • K

Hierarchy

Properties

lower?: K

Lower bound of the range.

lowerOpen?: boolean

Whether the lower bound is open. Defaults to false.

reverse?: boolean

Iterates in reverse order.

upper?: K

Upper bound of the range.

upperOpen?: boolean

Whether the upper bound is open. Defaults to true.

Generated using TypeDoc