Skip to main content

interface BiMap.Types

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

Extends: KeyValue<K,V>

Properties

_K

The key type.

Definition

readonly _K: K;

Overrides

KeyValue._K

_V

The value type.

Definition

readonly _V: V;

Overrides

KeyValue._V

nonEmpty

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

Definition

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

normal

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

Definition

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