Skip to main content
Module

x/rimbu/collection-types/map-custom/index.ts>Row

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
interface Row
import { type Row } from "https://deno.land/x/rimbu@0.13.1/collection-types/map-custom/index.ts";

A higher-kind utility type providing access to a row type R, a column type C, and a value type V.

Type Parameters

optional
R = unknown
optional
C = unknown
optional
V = unknown

Properties

readonly
_R: R

The row key type.

readonly
_C: C

The column key type.

readonly
_V: V

The value type.