pub type KeyValueList<K, V> = KeyNodeList<K, ValueNode<K, V>>;Expand description
A KeyNodeList that uses ValueNode<K, V> as its node type and
HashMap as its underlying hash map.
KeyValueList stores key-value pairs and organize them in the form of
a doubly-linked list.
Aliased Typeยง
pub struct KeyValueList<K, V> { /* private fields */ }