import { VariantSetBase } from "https://deno.land/x/rimbu@0.14.0/collection-types/set-custom/interface/base.ts";
Interfaces
Utility interface that provides higher-kinded types for this collection. |
import { type VariantSetBase } from "https://deno.land/x/rimbu@0.14.0/collection-types/set-custom/interface/base.ts";
Type Parameters
Methods
Returns true if there is at least one entry in the collection, and instructs the compiler to treat the collection as a .NonEmpty type.
Returns the collection with given value
removed.
Returns the collection with all values in the given values
StreamSource
removed.
Performs given function f
for each value of the collection, using given state
as initial traversal state.
Returns a collection containing only those entries that satisfy given pred
predicate.
Returns a collection where each value of given other
StreamSource
is removed from this collection.
Returns a collection containing values that are both in this collection, and in the given other
StreamSource
.
Returns an array containing all values in this collection.