import { type SortedMultiSet } from "https://deno.land/x/rimbu@1.2.0/core/mod.ts";
const { NonEmpty } = SortedMultiSet;
A type-invariant immutable MultiSet of value type T. In the MultiSet, each value can occur multiple times. See the MultiSet documentation and the SortedMultiSet API documentation
Examples
Example 1
Example 1
const s1 = SortedMultiSet.empty<string>()
const s2 = SortedMultiSet.of('a', 'b', 'a', 'c')