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

x/rimbu/core/menu/table/index.ts>HashRow.SortedColumn

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
namespace HashRow.SortedColumn
import { HashRow } from "https://deno.land/x/rimbu@0.13.1/core/menu/table/index.ts";
const { SortedColumn } = HashRow;

Interfaces

A non-empty type-invariant immutable Table of row key type R, column key type C, and value type V. In the Table, a combination of a row and column key has exactly one value. See the Table documentation and the HashTableSortedColumn API documentation

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

interface HashRow.SortedColumn
implements TableBase<R, C, V, HashTableSortedColumn.Types>
import { type HashRow } from "https://deno.land/x/rimbu@0.13.1/core/menu/table/index.ts";
const { SortedColumn } = HashRow;

A type-invariant immutable Table of row key type R, column key type C, and value type V. In the Table, a combination of a row and column key has exactly one value. See the Table documentation and the HashTableSortedColumn API documentation

Examples

Example 1

const t1 = HashTableSortedColumn.empty<number, string, boolean>()
const t2 = HashTableSortedColumn.of([1, 'a', true], [2, 'a', false])
variable HashRow.SortedColumn
import { HashRow } from "https://deno.land/x/rimbu@0.13.1/core/menu/table/index.ts";
const { SortedColumn } = HashRow;

type

HashTableSortedColumnCreators