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

Method write5

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

Writes 5 bytes of a long value. @param v value to be written @throws IOException I/O exception

(final long v)

Source from the content-addressed store, hash-verified

205 * @throws IOException I/O exception
206 */
207 public void write5(final long v) throws IOException {
208 write((byte) (v >>> 32));
209 write((byte) (v >>> 24));
210 write((byte) (v >>> 16));
211 write((byte) (v >>> 8));
212 write((byte) v);
213 }
214
215 /**
216 * Writes a long value.

Callers 6

textRefMethod · 0.45
writeMethod · 0.45
writeIndexMethod · 0.45
writeIndexMethod · 0.45
writeIndexMethod · 0.45
writeMethod · 0.45

Calls 1

writeMethod · 0.95

Tested by

no test coverage detected