Skip to main content
Module

x/rimbu/mod.ts>SortedBiMultiMap

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
namespace SortedBiMultiMap
import { SortedBiMultiMap } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

Interfaces

A mutable SortedBiMultiMap builder used to efficiently create new immutable instances. See the BiMultiMap documentation and the HashBiMultiMap.Builder API documentation

The SortedBiMultiMap's Context instance that serves as a factory for all related immutable instances and builders.

A non-empty type-invariant immutable bi-directional MultiMap where keys and values have a many-to-many mapping. Its keys and values are sorted. See the BiMultiMap documentation and the HashBiMultiMap API documentation

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

interface SortedBiMultiMap
import { type SortedBiMultiMap } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

A type-invariant immutable bi-directional MultiMap where keys and values have a many-to-many mapping. Its keys and values are sorted. See the BiMultiMap documentation and the HashBiMultiMap API documentation

Examples

Example 1

const h1 = SortedBiMultiMap.empty<number, string>()
const h1 = SortedBiMultiMap.of([1, 'a'], [1, 'b'])
variable SortedBiMultiMap
import { SortedBiMultiMap } from "https://deno.land/x/rimbu@0.14.0/mod.ts";

type

BiMultiMapSorted.Creators