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

Method stringMax

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

Source from the content-addressed store, hash-verified

273 }
274
275 public static String stringMax(Object a, Object b) {
276 if (a == null || b == null) return null;
277 return new Precise(a).max(new Precise(b)).toString();
278 }
279
280 public static boolean stringEquals(Object a, Object b) {
281 if (a == null || b == null) return false;

Callers 12

parseMarketMethod · 0.95
parseMarketMethod · 0.95
fetchMarketsMethod · 0.95
parseLedgerEntryMethod · 0.95
fetchMarketByIdMethod · 0.95
fetchTradingFeeMethod · 0.95
fetchSpotMarketsMethod · 0.95
parseMarketMethod · 0.95
parseLedgerEntryMethod · 0.95
parseOrderMethod · 0.95
parseMarketMethod · 0.95
testPreciseMethod · 0.95

Calls 2

toStringMethod · 0.45
maxMethod · 0.45

Tested by 1

testPreciseMethod · 0.76