Skip to main content
Module

x/rimbu/mod.ts>HashTableHashColumn.Types

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
interface HashTableHashColumn.Types
implements [TableBase.Types]
import { type HashTableHashColumn } from "https://deno.land/x/rimbu@0.14.0/mod.ts";
const { Types } = HashTableHashColumn;

Utility interface that provides higher-kinded types for this collection.

Properties

readonly
normal: HashTableHashColumn<this["_R"], this["_C"], this["_V"]>
readonly
nonEmpty: HashTableHashColumn.NonEmpty<this["_R"], this["_C"], this["_V"]>
readonly
row: HashMap<this["_C"], this["_V"]>
readonly
rowNonEmpty: HashMap.NonEmpty<this["_C"], this["_V"]>
readonly
rowMap: HashMap<this["_R"], HashMap.NonEmpty<this["_C"], this["_V"]>>
readonly
rowMapNonEmpty: HashMap.NonEmpty<this["_R"], HashMap.NonEmpty<this["_C"], this["_V"]>>
readonly
context: HashTableHashColumn.Context<this["_R"], this["_C"]>
readonly
builder: HashTableHashColumn.Builder<this["_R"], this["_C"], this["_V"]>
readonly
rowContext: HashMap.Context<this["_R"]>
readonly
columnContext: HashMap.Context<this["_C"]>