Skip to main content
Module

x/rimbu/mod.ts>BlockBuilderBase

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
class BlockBuilderBase
Abstract
import { BlockBuilderBase } from "https://deno.land/x/rimbu@1.2.0/mod.ts";

Properties

abstract
optional
_entries: undefined | E[]
abstract
optional
_entrySets: undefined | GenBlockBuilderEntry<E>[]
readonly
isEmpty: boolean
abstract
readonly
size: number
abstract
optional
source: undefined | GenSource<E>

Methods

forEach(f: (
entry: E,
index: number,
halt: () => void,
) => void
, options?: { state?: TraverseState; }
): void