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

Method MinMax

java/lib/src/main/java/io/github/ccxt/types/MinMax.java:9–14  ·  view source on GitHub ↗
(Object raw)

Source from the content-addressed store, hash-verified

7 public Double max;
8
9 @SuppressWarnings("unchecked")
10 public MinMax(Object raw) {
11 Map<String, Object> data = TypeHelper.toMap(raw);
12 this.min = TypeHelper.safeFloat(data, "min");
13 this.max = TypeHelper.safeFloat(data, "max");
14 }
15}

Callers

nothing calls this directly

Calls 2

toMapMethod · 0.95
safeFloatMethod · 0.95

Tested by

no test coverage detected