Skip to main content
Module

x/rimbu/mod.ts>OrderedHashSet.Types

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

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

Properties

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