Prelude API
    Preparing search index...

    Type Alias Range<K, V>

    Represents a range with start and end boundaries and an associated value.

    type Range<K, V> = {
        end: K;
        start: K;
        value: V;
    }

    Type Parameters

    • K

      The type of range boundaries (keys)

    • V

      The type of value associated with this range

    Index
    end: K

    The end boundary of the range (inclusive or exclusive, interpretation is defined through Key.next/Key.prev on RangeSet).

    start: K

    The start boundary of the range (inclusive)

    value: V

    The value associated with this range