import { MultiMapNonEmpty } from "https://deno.land/x/rimbu@0.13.1/multimap/custom/implementation/base.ts";
Methods
addEntries(entries: StreamSource<readonly [K, V]>): TpG["nonEmpty"]
asNormal(): any
assumeNonEmpty(): any
modifyAt(atKey: K, options: { ifNew?: OptLazy<StreamSource<V>>; ifExists?: (currentValues: TpG["keyMapValuesNonEmpty"]) => StreamSource<V>; }): TpG["normal"]
removeEntries<UK, UV>(entries: StreamSource<[RelatedTo<K, UK>, RelatedTo<V, UV>]>): TpG["normal"]
removeKeyAndGet<UK>(key: RelatedTo<K, UK>): [TpG["normal"], TpG["keyMapValuesNonEmpty"]] | undefined
removeKeys<UK>(keys: StreamSource<RelatedTo<K, UK>>): TpG["normal"]
streamKeys(): Stream.NonEmpty<K>
streamValues(): Stream.NonEmpty<V>
toArray(): ArrayNonEmpty<[K, V]>
toString(): string