You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BTreeMap has a corresponding BTreeSet. HashMap has a corresponding HashSet. It would be nice if Trie had a corresponding TrieSet. It is easy to workaround in practice (let foo: Trie<Key, ()> = Default::default()), but having a drop-in replacement for BTreeSet and HashSet would be nice.
The text was updated successfully, but these errors were encountered:
Thanks for this nice crate.
BTreeMap
has a correspondingBTreeSet
.HashMap
has a correspondingHashSet
. It would be nice ifTrie
had a correspondingTrieSet
. It is easy to workaround in practice (let foo: Trie<Key, ()> = Default::default()
), but having a drop-in replacement forBTreeSet
andHashSet
would be nice.The text was updated successfully, but these errors were encountered: