Skip to main content

class SortedSetContext<UT>

undocumented

Extends: ContextBase<UT,Tp>

Implements: SortedSet.Context<UT>

Type parameters

NameDescription
UTundocumented

Properties

_empty

undocumented

Definition

readonly _empty: SortedSet<any>;

Overrides

ContextBase._empty

_fixedElementType

undocumented

Definition

readonly _fixedElementType: any;

Overrides

Context._fixedElementTypeContextBase._fixedElementType

_types

undocumented

Definition

get _types(): Tp;

Overrides

Context._typesContextBase._types

blockSizeBits

undocumented

Definition

readonly blockSizeBits: number;

builder

undocumented

Definition

readonly builder: <T extends UT>() => SortedSetBuilder<T>;

comp

undocumented

Definition

readonly comp: Comp<UT>;

empty

undocumented

Definition

readonly empty: <T extends UT>() => WithElem<Tp, T>["normal"];

Overrides

ContextBase.empty

from

undocumented

Definition

readonly from: any;

Overrides

ContextBase.from

maxEntries

undocumented

Definition

readonly maxEntries: number;

minEntries

undocumented

Definition

readonly minEntries: number;

of

undocumented

Definition

readonly of: <T extends UT>(values_0: T, ...values_1: T[]) => T extends UT ? WithElem<Tp, T>["nonEmpty"] : never;

Overrides

ContextBase.of

reducer

undocumented

Definition

readonly reducer: <T extends UT>(source?: StreamSource<T>) => Reducer<T, WithElem<Tp, T>["normal"]>;

Overrides

ContextBase.reducer

typeTag

undocumented

Definition

readonly typeTag = "SortedSet";

Overrides

ContextBase.typeTagContext.typeTag

Methods

builder

Returns an empty builder instance for this type of collection and context.

Definition

abstract builder<T extends UT>(): WithElem<Tp, T>['builder'];

Type parameters

NameConstraintsDescription
TUT
example
HashSet.builder<number>()     // => HashSet.Builder<number>

Overrides

Factory.builder, ContextBase.builder

createBuilder

undocumented

Definition

createBuilder<T extends UT>(source?: SortedSet<T>): SortedSetBuilder<T>;

Type parameters

NameConstraintsDescription
TUT

Parameters

NameTypeDescription
sourceSortedSet<T>

empty

Returns the (singleton) empty instance of this type and context with given value type.

Definition

empty<T extends UT>(): WithElem<Tp, T>['normal'];

Type parameters

NameConstraintsDescription
TUT
example
HashSet.empty<number>()    // => HashSet<number>
HashSet.empty<string>() // => HashSet<string>

Overrides

Factory.empty

findIndex

undocumented

Definition

findIndex(value: UT, entries: readonly UT[]): number;

Parameters

NameTypeDescription
valueUT
entriesreadonly UT[]

from

Returns an immutable set of this collection type and context, containing the given values in source.

Definitions

from<T extends UT>(...sources: ArrayNonEmpty<StreamSource.NonEmpty<T>>): WithElem<Tp, T>['nonEmpty'];

from<T extends UT>(...sources: ArrayNonEmpty<StreamSource<T>>): WithElem<Tp, T>['normal'];

Type parameters

NameConstraintsDescription
TUT

Parameters

NameTypeDescription
sourcesArrayNonEmpty<StreamSource.NonEmpty<T>>an array of StreamSource instances containing values
example
HashSet.from([1, 2, 3], [4, 5])   // => HashSet.NonEmpty<number>

Overrides

Factory.from

inner

undocumented

Definition

inner(entries: readonly UT[], children: readonly SortedSetNode<UT>[], size: number): SortedSetInner<UT>;

Parameters

NameTypeDescription
entriesreadonly UT[]
childrenreadonly SortedSetNode<UT>[]
sizenumber

isNonEmptyInstance

undocumented

Definition

isNonEmptyInstance(source: any): source is any;

Parameters

NameTypeDescription
sourceany

Overrides

ContextBase.isNonEmptyInstance

isSortedSetEmpty

undocumented

Definition

isSortedSetEmpty(obj: any): obj is SortedSetEmpty;

Parameters

NameTypeDescription
objany

isSortedSetInner

undocumented

Definition

isSortedSetInner<T>(obj: any): obj is SortedSetInner<T>;

Type parameters

NameDescription
T

Parameters

NameTypeDescription
objany

isSortedSetLeaf

undocumented

Definition

isSortedSetLeaf<T>(obj: any): obj is SortedSetLeaf<T>;

Type parameters

NameDescription
T

Parameters

NameTypeDescription
objany

isSortedSetNode

undocumented

Definition

isSortedSetNode<T>(obj: any): obj is SortedSetNode<T>;

Type parameters

NameDescription
T

Parameters

NameTypeDescription
objany

isValidValue

undocumented

Definition

isValidValue(value: any): value is UT;

Parameters

NameTypeDescription
valueany

Overrides

ContextBase.isValidValue, Context.isValidValue

leaf

undocumented

Definition

leaf(entries: readonly UT[]): SortedSetLeaf<UT>;

Parameters

NameTypeDescription
entriesreadonly UT[]

of

Returns an immutable set of this type and context, containing the given values.

Definition

of<T extends UT>(...values: ArrayNonEmpty<T>): WithElem<Tp, T>['nonEmpty'];

Type parameters

NameConstraintsDescription
TUT

Parameters

NameTypeDescription
valuesArrayNonEmpty<T>a non-empty array of values
example
HashSet.of(1, 2, 3).toArray()   // => [1, 2, 3]

Overrides

Factory.of

reducer

Returns a Reducer that appends received items to an RSet and returns the RSet as a result. When a source is given, the reducer will first create an RSet from the source, and then append elements to it.

Definition

reducer<T extends UT>(source?: StreamSource<T>): Reducer<T, WithElem<Tp, T>['normal']>;

Type parameters

NameConstraintsDescription
TUT

Parameters

NameTypeDescription
sourceStreamSource<T>(optional) an initial source of elements to append to
example
const someList = SortedSet.of(1, 2, 3);
const result = Stream.range({ start: 20, amount: 5 }).reduce(SortedSet.reducer(someList))
result.toArray() // => [1, 2, 3, 20, 21, 22, 23, 24]
note

uses an RSet builder under the hood. If the given source is a RSet in the same context, it will directly call .toBuilder().

Overrides

Factory.reducer