ReadOnlyObservableMap.forEach - Andrei15193/react-model-view-viewmodel GitHub Wiki
API / ReadOnlyObservableMap<TKey, TItem> / forEach method
Iterates over the entire map executing the callback
for each pair.
public forEach<TContext = void>(
callback: (this: TContext, item: TItem, key: TKey, map: this) => void,
thisArg?: TContext
): void
Source reference: src/collections/observableMap/ReadOnlyObservableMap.ts:111
.
-
TContext - The context type in which the callback is executed.
Default value:
void
.