Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fun/iterable.ts>collect

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Latest
function collect
import { collect } from "https://deno.land/x/fun@v2.0.0/iterable.ts";

Collect all values of an iterable into an array. WARNING: If the iterable is infinite then this will cause the program to hang indefinitely.

Parameters

ta: Iterable<A>

Returns

ReadonlyArray<A>