UNPKG

rc-js-util

Version:

A collection of TS and C++ utilities to help writing performant and correct applications, achieved through strict typing and (removable) invariant checking.

9 lines 352 B
/** * @public * Like `Array.forEach` but for arbitrary objects. * * @remarks * See {@link dictionaryForEach}. */ export declare function dictionaryForEach<TDict extends object, TKey extends keyof TDict>(dictionary: TDict, callback: (item: TDict[TKey], key: TKey, dictionary: TDict) => void): void; //# sourceMappingURL=dictionary-foreach.d.ts.map