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

Method sum

java/lib/src/main/java/io/github/ccxt/base/Generic.java:387–391  ·  view source on GitHub ↗
(Object... args)

Source from the content-addressed store, hash-verified

385 // ---------- sum ----------
386
387 public static Object sum(Object... args) {
388 Object res = 0;
389 for (Object arg : args) res = sum(res, arg);
390 return res;
391 }
392
393 public static Object sum(Object a, Object b) {
394 if (a == null) a = 0;

Callers 15

signHashMethod · 0.45
fetchOHLCVMethod · 0.45
signHashMethod · 0.45
fetchOrderBookMethod · 0.45
fetchHip3MarketsMethod · 0.45
fetchOHLCVMethod · 0.45
signHashMethod · 0.45
fetchOHLCVMethod · 0.45
signHashMethod · 0.45
createOrderRequestMethod · 0.45
editOrderMethod · 0.45
fetchOHLCVMethod · 0.45

Calls 2

toDoubleMethod · 0.95
isWholeMethod · 0.95

Tested by

no test coverage detected