powersOfTwo

precalculated powers of two table for unit testing

version(unittest)
enum powersOfTwo = iota(0, CHAR_BIT * size_t.sizeof).map!(a => size_t(1) << a);

Meta