Skip to main content

interface BiMultiMapBase.Types

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

Extends: KeyValue<K,V>

Implemented by: HashBiMultiMap.Types, ContextTypesImpl, SortedBiMultiMap.Types, BiMultiMap.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

The 'builder' collection type (higher-kinded type).

Definition

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

context

The collection context type (higher-kinded type).

Definition

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

keyMultiMapValues

The value set collection type (higher-kinded type).

Definition

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

keyValueMultiMap

The key to value multimap type (higher-kinded type).

Definition

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

keyValueMultiMapContext

The key to value multimap context type (higher-kinded type).

Definition

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

keyValueMultiMapNonEmpty

The non-empty key to value multimap type (higher-kinded type).

Definition

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

nonEmpty

The 'non-empty' collection type (higher-kinded type).

Definition

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

normal

The 'normal' collection type (higher-kinded type).

Definition

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

valueKeyMultiMap

The value to key multimap type (higher-kinded type).

Definition

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

valueKeyMultiMapContext

The value to key multimap context type (higher-kinded type).

Definition

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

valueKeyMultiMapNonEmpty

The non-empty value to key multimap type (higher-kinded type).

Definition

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

valueMultiMapValues

The key set collection type (higher-kinded type).

Definition

readonly valueMultiMapValues: RSet<this['_K']>;