import { type BiMultiMapBase } from "https://deno.land/x/rimbu@0.14.0/bimultimap/custom/index.ts";
const { Builder } = BiMultiMapBase;
Methods
Returns true if the given key
is present in the builder.
Returns true if the given value
is present in the builder.
Returns true if the given key
value
entry is present in the builder.
Returns a collection representing the values currently associated with given key
.
Returns a collection representing the keys currently associated with given value
.
Sets the values associated to given key
to the values in the given values
StreamSource.
Sets the keys associated to given value
to the keys in the given keys
StreamSource.
Adds given entries
to the builder.
Removes the entries related to given key
from the builder.
Removes the entries related to the given keys
StreamSource
from the builder.
Removes the entries related to given value
from the builder.
Removes the entries related to the given values
StreamSource
from the builder.
Removes the entry of given key
and value
from the builder.
Removes the entries in the given entries
StreamSource
from the builder.
Performs given function f
for each entry of the builder.
Returns an immutable collection instance containing the entries in this builder.