Various utility classes and methods for Ceylon. These are intended to all be written in native Ceylon,
with no dependency on JDK-specific modules.
Format [[Integer]]s or [[com.vasileff.ceylon.integer64::Integer64]]s as either hex or bits Strings with padding and underscores to make them more readable.
print(formatAndPadAsBits(30));
> <b>0001_1110</b>
print(formatAndPadAsHex(500000);
> <b>0007_a120</b>
Determine whether an [[Integer] has too many (or too few in the ...