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

Method write

basex-core/src/main/java/org/basex/query/value/map/XQMap.java:66–73  ·  view source on GitHub ↗
(final DataOutput out)

Source from the content-addressed store, hash-verified

64 }
65
66 @Override
67 public final void write(final DataOutput out) throws IOException, QueryException {
68 out.writeNum((int) structSize());
69 for(final Entry entry : entries()) {
70 Stores.write(out, entry.key());
71 Stores.write(out, entry.value());
72 }
73 }
74
75 @Override
76 public final void refineType(final Expr expr) {

Callers

nothing calls this directly

Calls 6

entriesMethod · 0.95
writeMethod · 0.95
writeNumMethod · 0.45
structSizeMethod · 0.45
keyMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected