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