Documentation / @ripl/utilities / ObjectIteratee
Type Alias: ObjectIteratee()<TKey, TValue, TResult> ​
ObjectIteratee<
TKey,TValue,TResult> = (key,value) =>TResult
Defined in: collection.ts:22
Callback invoked for each entry in an object, receiving the key and value.
Type Parameters ​
| Type Parameter | Default type |
|---|---|
TKey | - |
TValue | - |
TResult | void |
Parameters ​
| Parameter | Type |
|---|---|
key | TKey |
value | TValue |
Returns ​
TResult