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

Method stringLe

java/lib/src/main/java/io/github/ccxt/base/Precise.java:307–310  ·  view source on GitHub ↗
(Object a, Object b)

Source from the content-addressed store, hash-verified

305 }
306
307 public static boolean stringLe(Object a, Object b) {
308 if (a == null || b == null) return false;
309 return new Precise(String.valueOf(a)).le(new Precise(String.valueOf(b)));
310 }
311
312 public static boolean stringGe(Object a, Object b) {
313 if (a == null || b == null) return false;

Callers 9

parseLedgerEntryMethod · 0.95
parsePositionMethod · 0.95
parseLedgerEntryMethod · 0.95
parseLedgerEntryMethod · 0.95
parseLedgerEntryMethod · 0.95
testTickerMethod · 0.95
AssertLessOrEqualMethod · 0.95
tcoAssertFilledOrderMethod · 0.95
testPreciseMethod · 0.95

Calls 1

leMethod · 0.45

Tested by 4

testTickerMethod · 0.76
AssertLessOrEqualMethod · 0.76
tcoAssertFilledOrderMethod · 0.76
testPreciseMethod · 0.76