9.2.0 • Published 2 months ago

ts-fluent-iterators v9.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

Typescript Fluent Iterators

Provides fluent api operations on iterators, async iterators and promise iterators.

Description

The library provides the common transformation, filtering and aggregation operations on iterators, async iterators and promise iterators.

Quick start guide

Install from Node Package Manager: npm i ts-fluent-iterators

Add the following code to your index file:

import { iterator, Generators } from 'ts-fluent-iterators';

const iter = iterator(Generators.range());

console.log(
  `The first five even numbers are: ${iter
    .filter(n => n % 2 === 0)
    .take(5)
    .collect()}`
);

Operations supported

Usage

Click here for the Full API Reference.

License

Licensed under MIT.

9.2.0

2 months ago

9.1.1

2 months ago

9.1.0

2 months ago

9.0.0

4 months ago

8.0.0

4 months ago

7.0.0

4 months ago

7.1.1

4 months ago

7.1.0

4 months ago

6.0.2

5 months ago

6.0.1

5 months ago

6.0.0

5 months ago

5.2.0

5 months ago

5.1.0

5 months ago

5.0.0

7 months ago

3.0.0

8 months ago

4.0.0

8 months ago

2.1.0

10 months ago

1.2.0

1 year ago

1.3.0

12 months ago

1.2.1

1 year ago

2.0.0

12 months ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

2 years ago

1.1.3

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.0

2 years ago