Expand description
Persistent (immutable) data structures.
Functional, fully-persistent data structures with structural sharing:
PersistentVec<T>— RRB-tree persistent vectorPersistentMap<K, V>— Hash Array Mapped Trie (HAMT) mapPersistentSet<T>— set backed byPersistentMapPersistentQueue<T>— banker’s queue (amortised O(1))PersistentStack<T>— linked-list stack (O(1) push/pop)