Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rimbu/core/menu/multimap/sorted-key.ts>SortedValue

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
namespace SortedValue
import { SortedValue } from "https://deno.land/x/rimbu@0.13.1/core/menu/multimap/sorted-key.ts";

Interfaces

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

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

A non-empty type-invariant immutable MultiMap of key type K, and value type V. In the MultiMap, each key has at least one value. See the MultiMap documentation and the SortedMultiMapSortedValue API documentation

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

interface SortedValue
implements MultiMapBase<K, V, SortedMultiMapSortedValue.Types>
import { type SortedValue } from "https://deno.land/x/rimbu@0.13.1/core/menu/multimap/sorted-key.ts";

A type-invariant immutable MultiMap of key type K, and value type V. In the MultiMap, each key has at least one value. See the MultiMap documentation and the SortedMultiMapSortedValue API documentation

Examples

Example 1

const m1 = SortedMultiMapSortedValue.empty<number, string>()
const m2 = SortedMultiMapSortedValue.of([1, 'a'], [1, 'b'], [2, 'a'])
variable SortedValue
import { SortedValue } from "https://deno.land/x/rimbu@0.13.1/core/menu/multimap/sorted-key.ts";

type

SortedMultiMapSortedValueCreators