Skip to content

Latest commit

 

History

History
74 lines (38 loc) · 1015 Bytes

File metadata and controls

74 lines (38 loc) · 1015 Bytes
hide_title true
custom_edit_url
pagination_prev
pagination_next

Home > @rushstack/node-core-library > ProtectableMap > forEach

ProtectableMap.forEach() method

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;

Parameters

Parameter

Type

Description

callbackfn

(value: V, key: K, map: Map<K, V>) => void

thisArg

any

(Optional)

Returns:

void