import { RSetBase } 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 RSetBase } from "https://deno.land/x/rimbu@0.14.0/collection-types/set-custom/interface/base.ts";
Type Parameters
optional
Tp extends RSetBase.Types = RSetBase.TypesMethods
Returns the collection with the values in given values
StreamSource
added.
addAll(values: StreamSource<T>): WithElem<Tp, T>["normal"]
Returns a collection containing all values from this collection and all values of given
other
StreamSource
.
union(other: StreamSource<T>): WithElem<Tp, T>["normal"]
symDifference(other: StreamSource<T>): WithElem<Tp, T>["normal"]
Returns a collection of the values that are either in this collection or in the other
StreamSource
, but
not in both.