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