Skip to main content

interface MultiMap.Types

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

Extends: MultiMapBase.Types

Properties

_K

The key type.

Definition

readonly _K: K;

Overrides

KeyValue._K

_V

The value type.

Definition

readonly _V: V;

Overrides

KeyValue._V

builder

undocumented

Definition

readonly builder: MultiMap.Builder<this['_K'], this['_V']>;

Overrides

Types.builder

context

undocumented

Definition

readonly context: MultiMap.Context<this['_K'], this['_V']>;

Overrides

Types.context

keyMap

undocumented

Definition

readonly keyMap: RMap<this['_K'], RSet.NonEmpty<this['_V']>>;

Overrides

Types.keyMap

keyMapContext

undocumented

Definition

readonly keyMapContext: RMap.Context<this['_K']>;

Overrides

Types.keyMapContext

keyMapNonEmpty

undocumented

Definition

readonly keyMapNonEmpty: RMap.NonEmpty<this['_K'], RSet.NonEmpty<this['_V']>>;

Overrides

Types.keyMapNonEmpty

keyMapValues

undocumented

Definition

readonly keyMapValues: RSet<this['_V']>;

Overrides

Types.keyMapValues

keyMapValuesContext

undocumented

Definition

readonly keyMapValuesContext: RSet.Context<this['_V']>;

Overrides

Types.keyMapValuesContext

keyMapValuesNonEmpty

undocumented

Definition

readonly keyMapValuesNonEmpty: RSet.NonEmpty<this['_V']>;

Overrides

Types.keyMapValuesNonEmpty

nonEmpty

undocumented

Definition

readonly nonEmpty: MultiMap.NonEmpty<this['_K'], this['_V']>;

Overrides

Types.nonEmpty

normal

undocumented

Definition

readonly normal: MultiMap<this['_K'], this['_V']>;

Overrides

Types.normal