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