Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rimbu/table/custom/index.ts>TableBase.Types

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

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

Properties

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