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.
72 lines (34 loc) • 987 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home](./index.md) > [rc-js-util](./rc-js-util.md) > [arrayForEach](./rc-js-util.arrayforeach.md)
## arrayForEach() function
Like `Array.forEach`<!-- -->.
**Signature:**
```typescript
export declare function arrayForEach<TItem>(items: ArrayLike<TItem>, callback: (item: TItem, index: number) => void): void;
```
## Parameters
<table><thead><tr><th>
Parameter
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
items
</td><td>
ArrayLike<TItem>
</td><td>
</td></tr>
<tr><td>
callback
</td><td>
(item: TItem, index: number) => void
</td><td>
</td></tr>
</tbody></table>
**Returns:**
void
## Remarks
Has more consistent performance characteristics cross-platform than the built-in `Array.forEach`<!-- -->.
See [arrayForEach()](./rc-js-util.arrayforeach.md)<!-- -->.