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

Method stringMin

java/lib/src/main/java/io/github/ccxt/base/Precise.java:285–290  ·  view source on GitHub ↗
(Object string1, Object string2)

Source from the content-addressed store, hash-verified

283 }
284
285 public static String stringMin(Object string1, Object string2) {
286 if (string1 == null || string2 == null) return null;
287 return new Precise(String.valueOf(string1))
288 .min(new Precise(String.valueOf(string2)))
289 .toString();
290 }
291
292 public static boolean stringLt(Object a, Object b) {
293 if (a == null || b == null) return false;

Callers 4

parseCurrencyMethod · 0.95
parseCurrencyMethod · 0.95
parseMarketMethod · 0.95
testPreciseMethod · 0.95

Calls 2

toStringMethod · 0.45
minMethod · 0.45

Tested by 1

testPreciseMethod · 0.76