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

Method stringAdd

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

Source from the content-addressed store, hash-verified

249 }
250
251 public static String stringAdd(Object string1, Object string2) {
252 if (string1 == null || string2 == null) return null;
253 return new Precise(String.valueOf(string1))
254 .add(new Precise(String.valueOf(string2)))
255 .toString();
256 }
257
258 public static String stringOr(Object string1, Object string2) {
259 if (string1 == null || string2 == null) return null;

Callers 15

safeLedgerEntryMethod · 0.95
safeBalanceMethod · 0.95
safeOrderMethod · 0.95
reduceFeesByCurrencyMethod · 0.95
safeTickerMethod · 0.95
parseTransactionMethod · 0.95
parsePositionRiskMethod · 0.95
parseAccountPositionsMethod · 0.95
parseAccountPositionMethod · 0.95
getExtendedEncodeI64Method · 0.95

Calls 2

toStringMethod · 0.45
addMethod · 0.45

Tested by 4

testTickerMethod · 0.76
testBalanceMethod · 0.76
tcoAssertFilledOrderMethod · 0.76
testPreciseMethod · 0.76