import { type Sorted } from "https://deno.land/x/rimbu@1.0.2/core/menu/set/index.ts";
const { NonEmpty } = Sorted;
A non-empty type-invariant immutable Set of value type T. In the Set, there are no duplicate values. See the Set documentation and the SortedSet API documentation
Examples
Example 1
Example 1
const s1 = SortedSet.empty<string>()
const s2 = SortedSet.of('a', 'b', 'c')