Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/ahh/src/iter/mod.ts>I.fn

Idiomatic type-safety structures for TypeScript.
Go to Latest
method I.fn
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
// ...

Parameters

f: Iterator<T>["next"]