Ejemplo n.º 1
0
 public boolean greaterThan(UInt rhs) {
   return greaterThan(rhs.toLong());
 }
Ejemplo n.º 2
0
 public long multiply(UInt rhs) throws UnsignedOutOfLimitsException {
   return multiply(rhs.toLong());
 }
Ejemplo n.º 3
0
 public long divide(UInt rhs) throws UnsignedOutOfLimitsException {
   return divide(rhs.toLong());
 }
Ejemplo n.º 4
0
 public long add(UInt rhs) throws UnsignedOutOfLimitsException {
   return add(rhs.toLong());
 }
Ejemplo n.º 5
0
 public long subtract(UInt rhs) throws UnsignedOutOfLimitsException {
   return subtract(rhs.toLong());
 }
Ejemplo n.º 6
0
 public UInt(UInt b) throws UnsignedOutOfLimitsException {
   this();
   set(b.toLong());
 }
Ejemplo n.º 7
0
 public boolean equals(UInt rhs) {
   return equals(rhs.toLong());
 }
Ejemplo n.º 8
0
 public boolean lessThanOrEqualTo(UInt rhs) {
   return lessThanOrEqualTo(rhs.toLong());
 }
Ejemplo n.º 9
0
 public boolean greaterThanOrEqualTo(UInt rhs) {
   return greaterThanOrEqualTo(rhs.toLong());
 }
Ejemplo n.º 10
0
 public boolean lessThan(UInt rhs) {
   return lessThan(rhs.toLong());
 }