import { type MultiSet } from "https://deno.land/x/rimbu@1.1.0/core/menu/menu.ts";
const { NonEmpty } = MultiSet.Sorted;
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')
Methods
stream(options?: { reversed?: boolean; }): Stream.NonEmpty<T>