.. | ||
cstr.h | ||
cttrie-print.h | ||
cttrie.h | ||
cttrie.hpp | ||
cttrie_sw32-boost.tcc | ||
cttrie_sw32.tcc | ||
cttrie_sw256-boost.tcc | ||
cttrie_sw256.tcc | ||
getindex.h | ||
lc_stringview.h | ||
README.md | ||
stringview.h | ||
test_cstr.cpp | ||
test_cttrie.cpp | ||
test_cttrie_print.cpp | ||
test_getindex.cpp |
Compile-time TRIE based string matcher (C++11)
Usage:
#include "cttrie.h"
...
TRIE(str)
... error case
CASE("abc")
... str matches abc ...
CASE("ad")
... etc
ENDTRIE; // <- trailing semicolon!
- compile with optimization enabled!
- cases may return a value (see e.g. test_cttrie.cpp) -> return types must match! (deduced from error case)
=> Slides
Copyright (c) 2016 Tobias Hoffmann
License: http://opensource.org/licenses/MIT