Skip to main content
Module

x/ahh/mod.ts>Iterator

Mostly rust-inpired stuff for @denoland.
Go to Latest
type alias Iterator
import { type Iterator } from "https://deno.land/x/ahh@v0.8.1/mod.ts";

An interface for dealing with iterators.

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