Skip to main content
Module

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

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
namespace OrderedSetBase
Re-export
import { OrderedSetBase } from "https://deno.land/x/rimbu@0.13.1/ordered/set-custom/index.ts";

Interfaces

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

interface OrderedSetBase
implements RSetBase<T, Tp>
Re-export
import { type OrderedSetBase } from "https://deno.land/x/rimbu@0.13.1/ordered/set-custom/index.ts";

Properties

readonly
order: List<T>

Returns a List instance containing the order of the elements.

readonly
sourceSet: WithElem<Tp, T>["sourceSet"]

Returns the contained Set instance.