Interface ReadonlyMap<K, V, K, V>
Properties
size
size: number
Methods
[Symbol.iterator]
-
entries
-
forEach
- forEach(callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void, thisArg?: any): void
-
Parameters
-
callbackfn: (value: V, key: K, map: ReadonlyMap<K, V>) => void
-
Optional thisArg: any
Returns void
get
- get(key: K): V | undefined
-
Parameters
Returns V | undefined
has
-
Parameters
Returns boolean
keys
-
values
-
Returns an iterable of entries in the map.