import { I } from "https://deno.land/x/ahh@v0.10.0/src/iter/mod.ts";
Creates an Iterator
where each iteration calls f
.
Examples
import { I } from "./mod.ts";
const iter = I.fn(() => 1);
console.log(iter.next()); // 1
console.log(iter.next()); // 1
// ...