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