Type Definition key_node_list::KeyValueList[][src]

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.