Skip to main content
Module

x/rimbu/mod.ts>OrderedSet.Types

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

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

Properties

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