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

x/ahh/src/iter/mod.ts>Iterator

Idiomatic type-safety structures for TypeScript.
Go to Latest
type alias Iterator
import { type Iterator } from "https://deno.land/x/ahh@v0.10.0/src/iter/mod.ts";

An interface for dealing with iterators.

definition: { next: () => Option<T>; } & Iterable<T>