Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

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

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

An interface for dealing with iterators.

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