Skip to main content
Module

x/rimbu/mod.ts>SortedTableHashColumn.Types

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

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

Properties

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