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

Method write2

basex-core/src/main/java/org/basex/io/out/DataOutput.java:185–188  ·  view source on GitHub ↗

Writes a short value. @param v value to be written @throws IOException I/O exception

(final int v)

Source from the content-addressed store, hash-verified

183 * @throws IOException I/O exception
184 */
185 public void write2(final int v) throws IOException {
186 write(v >>> 8);
187 write(v);
188 }
189
190 /**
191 * Writes an integer value.

Callers 2

updateMethod · 0.45
insertMethod · 0.45

Calls 1

writeMethod · 0.95

Tested by

no test coverage detected