├── .clang-format ├── LICENSE ├── README.md ├── constexpr-xxh3.h └── test ├── .gitignore ├── Makefile └── constexpr-xxh3-test.cc /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chys87/constexpr-xxh3/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chys87/constexpr-xxh3/HEAD/README.md -------------------------------------------------------------------------------- /constexpr-xxh3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chys87/constexpr-xxh3/HEAD/constexpr-xxh3.h -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chys87/constexpr-xxh3/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chys87/constexpr-xxh3/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/constexpr-xxh3-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chys87/constexpr-xxh3/HEAD/test/constexpr-xxh3-test.cc --------------------------------------------------------------------------------