import { type RSetBase } from "https://deno.land/x/rimbu@1.1.0/collection-types/set-custom/interface/base.ts";
const { NonEmpty } = RSetBase;
Type Parameters
optional
Tp extends RSetBase.Types = RSetBase.TypesMethods
stream(): Stream.NonEmpty<T>
Returns a non-empty Stream containing all values of this collection.
addAll(values: StreamSource<T>): WithElem<Tp, T>["nonEmpty"]
Returns the collection with the values in given values
StreamSource
added.
union(other: StreamSource<T>): WithElem<Tp, T>["nonEmpty"]
Returns a collection containing all values from this collection and all values of given
other
StreamSource
.