| hide_title | true |
|---|---|
| custom_edit_url | |
| pagination_prev | |
| pagination_next |
Home > @rushstack/node-core-library > ProtectableMap > forEach
Performs an operation for each (key, value) entries in the map.
Signature:
forEach(callbackfn: (value: V, key: K, map: Map<K, V>) => void, thisArg?: any): void;|
Parameter |
Type |
Description |
|---|---|---|
|
callbackfn |
(value: V, key: K, map: Map<K, V>) => void | |
|
thisArg |
any |
(Optional) |
Returns:
void