import { type MultiMapBase } from "https://deno.land/x/rimbu@0.13.0/multimap/custom/interface/base.ts";
const { Builder } = MultiMapBase;
Methods
Returns a built immutable collection of the values asssociated with given key
Assigns given values
StreamSource
to the given key
, replacing potential existing
values, and removing the key if values
is empty.
Returns true if the given key
is present in the builder.
Returns true if the given value
is associated with given key
in the builder.
Adds given entries
to the builder.
Removes the given value
from the values associated with given key
from the builder.
Removes the given entries
from the builder.
Removes the values associated with given key
from the builder.
Removes the values associated with each key of the given keys
Performs given function f
for each entry of the builder, using given state
as initial traversal state.
Returns an immutable collection instance containing the entries in this builder.