iterable-ts
v0.1.9
Published
A TypeScript library for working with iterable types
Downloads
8
Maintainers
Readme
iterable-ts
A TypeScript library for working with iterable types
See also lazy.js, ECMAScript This-Binding Syntax Proposal.
Usage
import { seq, values } from "iterable-ts";
const y = seq(1, 2).flatMap(v => v * v).toArray();
const z = values([1, 2]).filter(v => v != 2);