Skip to main content

Built and signed on GitHub Actions

itertools for Deno 🦕

This package works with Deno, BrowsersIt is unknown whether this package works with Cloudflare Workers, Node.js, Bun
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
This package works with Deno
It is unknown whether this package works with Bun
This package works with Browsers
JSR Score
100%
Published
3 months ago (0.3.0)
f
combinations

Returns r-length subsequences of elements from the input iterable.

f
combinationsWithReplacement

Returns r-length subsequences of elements from the input iterable allowing individual elements to be repeated more than once.

f
count

Creates an iterator that returns evenly spaced values.

f
cycle

Creates an iterator that cycles through elements from an iterable.

f
permutations

Returns successive r-length permutations of elements from the iterable.

f
permutationsWithReplacement

Returns successive r-length permutations of elements from the iterable allowing individual elements to be repeated more than once.

f
powerSet
No documentation available
f
product

Generates the Cartesian product of input iterables.

f
repeat

Creates an iterator that yields the same object repeatedly.