├── .gitignore ├── CMakeLists.txt ├── LICENSE_1_0.txt ├── README.md ├── include └── bitmask │ └── bitmask.hpp └── test ├── CMakeLists.txt ├── catch.hpp └── test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliora/bitmask/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliora/bitmask/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliora/bitmask/HEAD/LICENSE_1_0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliora/bitmask/HEAD/README.md -------------------------------------------------------------------------------- /include/bitmask/bitmask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliora/bitmask/HEAD/include/bitmask/bitmask.hpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliora/bitmask/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliora/bitmask/HEAD/test/catch.hpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliora/bitmask/HEAD/test/test.cpp --------------------------------------------------------------------------------