コード例 #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());
 }