import { SortedSetBuilder } from "https://deno.land/x/rimbu@1.0.4/sorted/set-custom/index.ts";
Constructors
new
SortedSetBuilder(context: SortedSetContext<T>,
_entries?: undefined | T[],
_children?: undefined | SortedSetBuilder<T>[],
size?,
Properties
add: (value: T) => boolean
addAll: (source: StreamSource<T>) => boolean
children: SortedSetBuilder<T>[]
removeAll: <U>(values: StreamSource<RelatedTo<T, U>>) => boolean
Methods
addInternal(value: T): boolean
createNew(): SortedSetBuilder<T>
prepareMutate(): void
removeInternal(value: T): boolean