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