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

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

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

An Iterator that can peek the next item.

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