Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vclemenzi/array-iter

Parallel arrays
https://github.com/vclemenzi/array-iter

npm parallel promise typescript

Last synced: about 2 months ago
JSON representation

Parallel arrays

Awesome Lists containing this project

README

        

# Array Iter
Iterates arrays in parallel, inspired by [rayon](https://github.com/rayon-rs/rayon)

## Installation

```bash
npm install array-iter
```
(or use your favorite package manager)

## Usage

```js
import "array-iter";

[1, 2, 3].iter((...) => { ... }); // like .map!
```