const ubyte x = 1; assert(!x.getTopBit); assert(x.getLowestBit);
const ubyte x = 128; assert(x.getTopBit); assert(!x.getLowestBit);
See Implementation