Birb / Pair
Class: Pair<Key, Value>
Type parameters
Name |
---|
Key |
Value |
Table of contents
Constructors
Properties
Constructors
constructor
• new Pair<Key
, Value
>(key
, value
)
A Pair is a key-value pair.
Type parameters
Name |
---|
Key |
Value |
Parameters
Name | Type | Description |
---|---|---|
key | Key | The key of this pair. |
value | Value | The value of this pair. |
Defined in
src/utils/Pair.ts:17
Properties
key
• key: Key
The key of this pair.
Defined in
src/utils/Pair.ts:5
value
• value: Value
The value of this pair.
Defined in
src/utils/Pair.ts:9