geocore/3party/cttrie
2019-10-29 10:17:47 +03:00
..
cstr.h Add cttrie 2019-10-29 10:17:47 +03:00
cttrie-print.h Add cttrie 2019-10-29 10:17:47 +03:00
cttrie.h Use vanill cttrie with pragma metaheader 2019-10-29 10:17:47 +03:00
cttrie.hpp Review notes 2019-10-29 10:17:47 +03:00
cttrie_sw32-boost.tcc Add cttrie 2019-10-29 10:17:47 +03:00
cttrie_sw32.tcc Add cttrie 2019-10-29 10:17:47 +03:00
cttrie_sw256-boost.tcc Add cttrie 2019-10-29 10:17:47 +03:00
cttrie_sw256.tcc Add cttrie 2019-10-29 10:17:47 +03:00
getindex.h Use vanill cttrie with pragma metaheader 2019-10-29 10:17:47 +03:00
lc_stringview.h Add cttrie 2019-10-29 10:17:47 +03:00
README.md Add cttrie 2019-10-29 10:17:47 +03:00
stringview.h Add cttrie 2019-10-29 10:17:47 +03:00
test_cstr.cpp Add cttrie 2019-10-29 10:17:47 +03:00
test_cttrie.cpp Add cttrie 2019-10-29 10:17:47 +03:00
test_cttrie_print.cpp Add cttrie 2019-10-29 10:17:47 +03:00
test_getindex.cpp Add cttrie 2019-10-29 10:17:47 +03:00

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