evael-lib ~master (2021-11-14T17:39:38.2764722)
Dub
Repo
KeyValueNode
evael
lib
containers
dictionary
Undocumented in source.
struct
KeyValueNode (
K
V
) {
K
key
;
V
value
;
this
(K key, V value, KeyValueNode* next);
}
Constructors
this
this
(K key, V value, KeyValueNode* next)
Undocumented in source.
Members
Variables
key
K
key
;
Undocumented in source.
value
V
value
;
Undocumented in source.
Meta
Source
See Implementation
evael
lib
containers
dictionary
structs
Dictionary
KeyValueNode