* Calls the function for each key and value pair in the map. The 'this' context is the map itself.
(func: (key: string, value: T) => any)
| 1200 | * Calls the function for each key and value pair in the map. The 'this' context is the map itself. |
| 1201 | */ |
| 1202 | forEach(func: (key: string, value: T) => any): void; |
| 1203 | |
| 1204 | /** |
| 1205 | * Is this map empty? |
no outgoing calls
no test coverage detected