public UInt(byte[] b) throws UnsignedOutOfLimitsException { this(); set(b); }
public UInt(UInt b) throws UnsignedOutOfLimitsException { this(); set(b.toLong()); }
public UInt(long l) throws UnsignedOutOfLimitsException { this(); set(l); }