Skip to main content

package @rimbu/sorted

The @rimbu/sorted package provides implementations for sorted maps and sets.

See the Rimbu docs Map page and Rimbu docs Set page for more information.

This is a convenience package that exports everything from the following sub-packages:

Interfaces

NameDescription
SortedMap<K,V>A type-invariant immutable Map of key type K, and value type V. In the Map, each key has exactly one value, and the Map cannot contain duplicate keys. See the Map documentation and the SortedMap API documentation
SortedSet<T>A type-invariant immutable Set of value type T. In the Set, there are no duplicate values. See the Set documentation and the SortedSet API documentation

Namespaces

NameDescription
SortedMapA type-invariant immutable Map of key type K, and value type V. In the Map, each key has exactly one value, and the Map cannot contain duplicate keys. See the Map documentation and the SortedMap API documentation
SortedSetA type-invariant immutable Set of value type T. In the Set, there are no duplicate values. See the Set documentation and the SortedSet API documentation