auto a = UInt!128.fromHexString("dfbbfae3cd0aff2714a1de7022b0029d"); assert (a.ctlz == 0); a = UInt!128.init; assert (a.ctlz == 128); a = UInt!128.fromHexString("3"); assert (a.ctlz == 126);
See Implementation