https://github.com/vc-z/array-iter
Parallel arrays
https://github.com/vc-z/array-iter
npm parallel promise typescript
Last synced: 11 months ago
JSON representation
Parallel arrays
- Host: GitHub
- URL: https://github.com/vc-z/array-iter
- Owner: vc-z
- License: mit
- Created: 2023-12-23T08:37:48.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-01T08:11:36.000Z (about 2 years ago)
- Last Synced: 2025-04-02T12:14:56.774Z (11 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!
```