Skip to main content
Module

x/rimbu/ordered/set-custom/index.ts>OrderedSetBase.Types

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

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

Properties

readonly
normal: OrderedSetBase<this["_T"]>
readonly
nonEmpty: OrderedSetBase.NonEmpty<this["_T"]>
readonly
context: OrderedSetBase.Context<this["_T"]>
readonly
builder: OrderedSetBase.Builder<this["_T"]>
readonly
sourceContext: RSetBase.Context<this["_T"]>
readonly
sourceSet: RSetBase<this["_T"]>
readonly
sourceSetNonEmpty: RSetBase.NonEmpty<this["_T"]>
readonly
sourceBuilder: RSetBase.Builder<this["_T"]>