class SortedSetEmpty
extends SortedEmpty
Re-export
import { SortedSetEmpty } from "https://deno.land/x/rimbu@1.0.4/sorted/set-custom/index.ts";
Constructors
new
SortedSetEmpty(context: SortedSetContext<T>)Methods
addAll(values: StreamSource<T>): SortedSet.NonEmpty<T>
difference(): SortedSet<T>
has(): false
remove(): this
removeAll(): this
slice(): this
streamRange(): Stream<T>
streamSliceIndex(): Stream<T>
symDifference(other: StreamSource<T>): SortedSet<T>
toString(): string
union(other: StreamSource<T>): SortedSet<T> | any