import { Ordered } from "https://deno.land/x/rimbu@1.0.2/core/menu/set/index.ts";
const { Sorted } = Ordered;
Interfaces
A mutable | |
A context instance for an | |
A non-empty type-invariant immutable Ordered SortedSet of value type T. In the Set, there are no duplicate values. See the Set documentation and the OrderedSortedSet API documentation | |
Utility interface that provides higher-kinded types for this collection. |
import { type Ordered } from "https://deno.land/x/rimbu@1.0.2/core/menu/set/index.ts";
const { Sorted } = Ordered;
A type-invariant immutable Ordered SortedSet of value type T. In the Set, there are no duplicate values. See the Set documentation and the OrderedSortedSet API documentation
Examples
Example 1
Example 1
const s1 = OrderedSortedSet.empty<string>()
const s2 = OrderedSortedSet.of('a', 'b', 'c')
import { Ordered } from "https://deno.land/x/rimbu@1.0.2/core/menu/set/index.ts";
const { Sorted } = Ordered;