Skip to main content
Module

x/rimbu/mod.ts>CollisionBuilderBase

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

Properties

abstract
optional
_entries: List.Builder<E> | undefined
readonly
entries: List.Builder<E>
readonly
size: number
abstract
optional
source: undefined | { size: number; entries: List.NonEmpty<E>; forEach(f: (
entry: E,
index: number,
halt: () => void,
) => void
, options?: { state?: TraverseState; }
): void; }

Methods

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