예제 #1
0
파일: UInt.java 프로젝트: polyactis/repos
 public boolean greaterThan(UInt rhs) {
   return greaterThan(rhs.toLong());
 }
예제 #2
0
파일: UInt.java 프로젝트: polyactis/repos
 public long multiply(UInt rhs) throws UnsignedOutOfLimitsException {
   return multiply(rhs.toLong());
 }
예제 #3
0
파일: UInt.java 프로젝트: polyactis/repos
 public long divide(UInt rhs) throws UnsignedOutOfLimitsException {
   return divide(rhs.toLong());
 }
예제 #4
0
파일: UInt.java 프로젝트: polyactis/repos
 public long add(UInt rhs) throws UnsignedOutOfLimitsException {
   return add(rhs.toLong());
 }
예제 #5
0
파일: UInt.java 프로젝트: polyactis/repos
 public long subtract(UInt rhs) throws UnsignedOutOfLimitsException {
   return subtract(rhs.toLong());
 }
예제 #6
0
파일: UInt.java 프로젝트: polyactis/repos
 public UInt(UInt b) throws UnsignedOutOfLimitsException {
   this();
   set(b.toLong());
 }
예제 #7
0
파일: UInt.java 프로젝트: polyactis/repos
 public boolean equals(UInt rhs) {
   return equals(rhs.toLong());
 }
예제 #8
0
파일: UInt.java 프로젝트: polyactis/repos
 public boolean lessThanOrEqualTo(UInt rhs) {
   return lessThanOrEqualTo(rhs.toLong());
 }
예제 #9
0
파일: UInt.java 프로젝트: polyactis/repos
 public boolean greaterThanOrEqualTo(UInt rhs) {
   return greaterThanOrEqualTo(rhs.toLong());
 }
예제 #10
0
파일: UInt.java 프로젝트: polyactis/repos
 public boolean lessThan(UInt rhs) {
   return lessThan(rhs.toLong());
 }