Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vclemenzi/array-iter
- Owner: vclemenzi
- License: mit
- Created: 2023-12-23T08:37:48.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-01T08:11:36.000Z (12 months ago)
- Last Synced: 2024-10-02T16:38:10.114Z (3 months ago)
- Topics: npm, parallel, promise, typescript
- Language: TypeScript
- Homepage:
- Size: 1.95 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!
```