Description
Store and search many strings efficiently with a trie data structure backed by libdatrie. It helps applications perform prefix lookup, dictionaries, token matching, or language-related searches faster than simple linear scans.
This is a developer library, not a dictionary app. It is useful when a program needs fast lookup over many keys, and projects should test memory use and character handling with their real data.