Skip to main content
Module

x/rimbu/mod.ts>OrderedHashSet

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
namespace OrderedHashSet
import { OrderedHashSet } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

Interfaces

A mutable OrderedHashSet builder used to efficiently create new immutable instances. See the Set documentation and the OrderedHashSet.Builder API documentation

A context instance for an OrderedHashSet that acts as a factory for every instance of this type of collection.

A non-empty type-invariant immutable Ordered HashSet of value type T. In the Set, there are no duplicate values. See the Set documentation and the OrderedHashSet API documentation

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

interface OrderedHashSet
import { type OrderedHashSet } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

A type-invariant immutable Ordered HashSet of value type T. In the Set, there are no duplicate values. See the Set documentation and the OrderedHashSet API documentation

Examples

Example 1

const s1 = OrderedHashSet.empty<string>()
const s2 = OrderedHashSet.of('a', 'b', 'c')
variable OrderedHashSet
import { OrderedHashSet } from "https://deno.land/x/rimbu@0.14.0/mod.ts";