Skip to main content
Module

x/rimbu/mod.ts>FastIterable

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
interface FastIterable
implements Iterable<T>
Re-export
import { type FastIterable } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

An interface that extends the standard Iterable interface to return a FastIterator instead of a normal Iterator.

Methods

[[Symbol.iterator]](): FastIterator<T>

Returns a FastIterator instance used to iterate over the values of this Iterable.