tst

Build Status Coverage Status crates.io

Ternary search tree collection in rust with similar API to std::collections as it possible. Now it's first simplest implementation, that's the reason why it's reccursive.

Documentation is available at http://billyevans.github.io/tst/tst

It has special methods: - wildcarditer - get iterator by wildcard - prefixiter/prefixitermut - get iterator by prefix - longest_prefix - get longest prefix

TODO: - split into map and set - make non-reccursive - remove key.chars().collect() - add more docs