DoublyLinkedKeyValue<'K, 'V> Type
Doubly-linked key-value node.
Constructors
Constructor | Description |
Full Usage:
DoublyLinkedKeyValue(prev, next, key, value)
Parameters:
DoublyLinkedKeyValue<'K, 'V>
next : DoublyLinkedKeyValue<'K, 'V>
key : 'K
value : 'V
Returns: DoublyLinkedKeyValue<'K, 'V>
|
|
Instance members
Instance member | Description |
Full Usage:
this.Key
Returns: 'K
|
|
Full Usage:
this.Next
|
|
Full Usage:
this.Prev
|
|
Full Usage:
this.RefCount
|
|
Full Usage:
this.Value
Returns: 'V
|
|