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

Method omit

java/lib/src/main/java/io/github/ccxt/base/Functions.java:119–124  ·  view source on GitHub ↗
(Object a, Object... parameters)

Source from the content-addressed store, hash-verified

117 // omit overloads
118 // -------------------------------------------------
119 public static Object omit(Object a, Object... parameters) {
120 if (a == null) return null;
121 List<Object> keys = new ArrayList<>();
122 Collections.addAll(keys, parameters);
123 return omit(a, (Object) keys);
124 }
125
126 public static Object omit(Object aa, Object k) {
127 if (aa == null || k == null) return null;

Callers 15

fetchOHLCVMethod · 0.45
fetchOrderMethod · 0.45
fetchOpenOrderMethod · 0.45
createOrderRequestMethod · 0.45
cancelOrderMethod · 0.45
fetchLedgerMethod · 0.45
withdrawMethod · 0.45
fetchOHLCVMethod · 0.45
createOrderRequestMethod · 0.45
editOrderMethod · 0.45
cancelOrdersMethod · 0.45

Calls 2

addMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected