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>
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.