Originally posted by skeevy420
View Post
Mind you, IANAL
type Link<K> = Box<Node<K>>; // much nicer! struct Node<K> where K: PartialEq + Clone + Ord, { pub key: K, next: BTreeMap<K, Link<K>>, ends_here: bool, }
Comment