Skip to main content
Module

x/rimbu/mod.ts>HashTableSortedColumn.Types

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

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

Properties

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