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