You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Eric Ihli fd191332cd Show root node in seq of Trie
Before, if you did a lookup in a trie and then did a seq of the result,
you would get all of the children of the node that you looked up, but
you wouldn't get the value of the node itself.

This was nice when I was only getting children of the root node
because the root node never had a value and I didn't want it.

But I think it makes more since to always include the root node.
If it's not wanted, filter it out at the application level.
3 years ago
..
tightly_packed_trie Redesign API, add tests, add example useage 3 years ago
tightly_packed_trie_test.clj Show root node in seq of Trie 3 years ago
trie_test.clj Redesign API, add tests, add example useage 3 years ago