MCPcopy Create free account
hub / github.com/BaseXdb/basex / toString

Method toString

basex-core/src/main/java/org/basex/util/hash/IntMap.java:73–79  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

71 }
72
73 @Override
74 public String toString() {
75 final List<Object> k = new ArrayList<>(), v = new ArrayList<>();
76 for(final int key : keys) k.add(key);
77 for(final int value : values) v.add(value);
78 return toString(k.toArray(), v.toArray());
79 }
80}

Callers

nothing calls this directly

Calls 2

addMethod · 0.65
toArrayMethod · 0.45

Tested by

no test coverage detected