Skip to main content
Module

x/rimbu/mod.ts>OrderedSortedSet.Types

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

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

Properties

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