auto a = UInt!128.fromHexString("d"); assert (a.cttz == 0); a = UInt!128.init; assert (a.cttz == 128); a = UInt!128.fromHexString("300000000000000000"); assert (a.cttz == 68);
See Implementation