MCPcopy Index your code
hub / github.com/ccxt/ccxt / gt

Method gt

java/lib/src/main/java/io/github/ccxt/base/Precise.java:125–128  ·  view source on GitHub ↗
(Precise other)

Source from the content-addressed store, hash-verified

123 }
124
125 public boolean gt(Precise other) {
126 Precise sum = this.sub(other);
127 return sum.integer.compareTo(BigInteger.ZERO) > 0;
128 }
129
130 public boolean ge(Precise other) {
131 Precise sum = this.sub(other);

Callers 3

maxMethod · 0.95
ltMethod · 0.45
stringGtMethod · 0.45

Calls 1

subMethod · 0.95

Tested by

no test coverage detected