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

Method write4

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

Writes an integer value. @param v value to be written @throws IOException I/O exception

(final int v)

Source from the content-addressed store, hash-verified

193 * @throws IOException I/O exception
194 */
195 public void write4(final int v) throws IOException {
196 write(v >>> 24);
197 write(v >>> 16);
198 write(v >>> 8);
199 write(v);
200 }
201
202 /**
203 * Writes 5 bytes of a long value.

Callers 11

testWrite4LongIntMethod · 0.45
testWrite4IntMethod · 0.45
idMethod · 0.45
sizeMethod · 0.45
distMethod · 0.45
writeMethod · 0.45
writeIndMethod · 0.45
writeIndexMethod · 0.45
sizeMethod · 0.45
mergeMethod · 0.45
writeIndexMethod · 0.45

Calls 1

writeMethod · 0.95

Tested by 2

testWrite4LongIntMethod · 0.36
testWrite4IntMethod · 0.36