1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

add popcount, clz, ctz

This commit is contained in:
bolero-MURAKAMI 2012-06-22 22:56:25 +09:00
parent ee8c952d05
commit 3500d0d49c
8 changed files with 181 additions and 38 deletions

9
sprout/bit/operation.hpp Normal file
View file

@ -0,0 +1,9 @@
#ifndef SPROUT_BIT_OPERATION_HPP
#define SPROUT_BIT_OPERATION_HPP
#include <sprout/config.hpp>
#include <sprout/bit/popcount.hpp>
#include <sprout/bit/clz.hpp>
#include <sprout/bit/ctz.hpp>
#endif // #ifndef SPROUT_BIT_OPERATION_HPP