示例#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());
 }