Exemple #1
0
 public UInt(byte[] b) throws UnsignedOutOfLimitsException {
   this();
   set(b);
 }
Exemple #2
0
 public UInt(UInt b) throws UnsignedOutOfLimitsException {
   this();
   set(b.toLong());
 }
Exemple #3
0
 public UInt(long l) throws UnsignedOutOfLimitsException {
   this();
   set(l);
 }