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

Method currencyIds

java/lib/src/main/java/io/github/ccxt/Exchange.java:7675–7688  ·  view source on GitHub ↗
(Object... optionalArgs)

Source from the content-addressed store, hash-verified

7673 }
7674
7675 public Object currencyIds(Object... optionalArgs)
7676 {
7677 Object codes = Helpers.getArg(optionalArgs, 0, null);
7678 if (Helpers.isTrue(Helpers.isEqual(codes, null)))
7679 {
7680 return codes;
7681 }
7682 Object result = new java.util.ArrayList<Object>(java.util.Arrays.asList());
7683 for (var i = 0; Helpers.isLessThan(i, Helpers.getArrayLength(codes)); i++)
7684 {
7685 ((java.util.List<Object>)result).add(this.currencyId(Helpers.GetValue(codes, i)));
7686 }
7687 return result;
7688 }
7689
7690 public Object marketsForSymbols(Object... optionalArgs)
7691 {

Callers 1

Calls 8

getArgMethod · 0.95
isTrueMethod · 0.95
isEqualMethod · 0.95
isLessThanMethod · 0.95
getArrayLengthMethod · 0.95
currencyIdMethod · 0.95
GetValueMethod · 0.95
addMethod · 0.45

Tested by

no test coverage detected