import { type RSetBase } from "https://deno.land/x/rimbu@1.1.0/collection-types/set-custom/interface/base.ts";
const { Builder } = RSetBase;
Methods
Returns true if the given value
is present in the builder.
add(value: T): boolean
Adds given value
to the builder.
addAll(values: StreamSource<T>): boolean
Adds the values in given values
StreamSource
to the builder.
Removes the values in given values
StreamSource
from this builder.