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

Method parseMarkets

java/lib/src/main/java/io/github/ccxt/Exchange.java:5148–5156  ·  view source on GitHub ↗
(Object markets)

Source from the content-addressed store, hash-verified

5146 }
5147
5148 public Object parseMarkets(Object markets)
5149 {
5150 Object result = new java.util.ArrayList<Object>(java.util.Arrays.asList());
5151 for (var i = 0; Helpers.isLessThan(i, Helpers.getArrayLength(markets)); i++)
5152 {
5153 ((java.util.List<Object>)result).add(this.parseMarket(Helpers.GetValue(markets, i)));
5154 }
5155 return result;
5156 }
5157
5158 public Object parseTicker(Object ticker, Object... optionalArgs)
5159 {

Callers

nothing calls this directly

Calls 5

isLessThanMethod · 0.95
getArrayLengthMethod · 0.95
parseMarketMethod · 0.95
GetValueMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected