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

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

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

An Iterator that can peek the next item.

definition: { peek(): Option<T>; } & Iterator<T>