ReadonlyIndexedCollection Namespace
Package: @esfx/collection-core
Functions
hasInstance(value)
Tests whether a value supports the minimal representation of a ReadonlyIndexedCollection
.
Declaration
function hasInstance<T>(value: Iterable<T>): value is ReadonlyIndexedCollection<T>;
Type Parameters
- T
Parameters
- value
- Iterable<T>
Returns
value is ReadonlyIndexedCollection<T>
hasInstance(value)
Tests whether a value supports the minimal representation of a ReadonlyIndexedCollection
.
Declaration
function hasInstance(value: unknown): value is ReadonlyIndexedCollection<unknown>;
Parameters
- value
- unknown
Returns
value is ReadonlyIndexedCollection<unknown>
Variables
getAt
A well-known symbol used to define the ReadonlyIndexedCollection#[ReadonlyIndexedCollection.getAt]
method.
Declaration
getAt: unique symbol
indexOf
A well-known symbol used to define the ReadonlyIndexedCollection#[ReadonlyIndexedCollection.indexOf]
method.
Declaration
indexOf: unique symbol
name
Declaration
name = "ReadonlyIndexedCollection"