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