import { iterable } from "https://deno.land/x/fun@v2.0.0/mod.ts";
const { collect } = iterable;
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>