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

Method stringEquals

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

Source from the content-addressed store, hash-verified

278 }
279
280 public static boolean stringEquals(Object a, Object b) {
281 if (a == null || b == null) return false;
282 return new Precise(String.valueOf(a)).equals(new Precise(String.valueOf(b)));
283 }
284
285 public static String stringMin(Object string1, Object string2) {
286 if (string1 == null || string2 == null) return null;

Callers 15

safeOrderMethod · 0.95
parsePositionRiskMethod · 0.95
parseAccountPositionMethod · 0.95
parseOrderMethod · 0.95
parseTradeMethod · 0.95
handleErrorsMethod · 0.95
parseOrderMethod · 0.95
parseOrderMethod · 0.95
parseAccountPositionMethod · 0.95
parsePositionRiskMethod · 0.95
handleErrorsMethod · 0.95
handleErrorsMethod · 0.95

Calls 1

equalsMethod · 0.45

Tested by 1

testPreciseMethod · 0.76