class SortedMapEmpty
extends SortedEmpty
Re-export
import { SortedMapEmpty } from "https://deno.land/x/rimbu@1.0.4/sorted/map-custom/index.ts";
Constructors
new
SortedMapEmpty(context: SortedMapContext<K>)Methods
addEntries(entries: StreamSource<readonly [K, V]>): SortedMap.NonEmpty<K, V>
getKeyAtIndex<O>(index: number, otherwise?: OptLazy<O>): O
getValueAtIndex<O>(index: number, otherwise?: OptLazy<O>): O
hasKey(): false
removeKeyAndGet(): undefined
removeKeys(): SortedMap<K, V>
streamKeys(): Stream<K>
streamRange(): Stream<readonly [K, V]>
streamSliceIndex(): Stream<readonly [K, V]>
streamValues(): Stream<V>
toBuilder(): SortedMapBuilder<K, V>
toString(): string