Darkhogg/polyethylene

View on GitHub
docs/polyethylene.indexedrunnable.md

Summary

Maintainability
Test Coverage
<!-- Do not edit this file. It is automatically generated by API Documenter. -->

[Home](./index.md) &gt; [polyethylene](./polyethylene.md) &gt; [IndexedRunnable](./polyethylene.indexedrunnable.md)

## IndexedRunnable type

A function that receives an object (`elem`<!-- -->) and its `index` in the iteration and doesn't return anything

<b>Signature:</b>

```typescript
export declare type IndexedRunnable<T> = (elem: T, index: number) => void;
```