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

Method read8

basex-core/src/main/java/org/basex/io/in/DataInput.java:144–149  ·  view source on GitHub ↗

Read a long value. @return read value @throws IOException I/O Exception

()

Source from the content-addressed store, hash-verified

142 * @throws IOException I/O Exception
143 */
144 private long read8() throws IOException {
145 return ((long) read() << 56) + ((long) (read() & 255) << 48)
146 + ((long) (read() & 255) << 40) + ((long) (read() & 255) << 32)
147 + ((long) (read() & 255) << 24) + ((read() & 255) << 16)
148 + ((read() & 255) << 8) + (read() & 255);
149 }
150}

Callers 2

readLongMethod · 0.95
readLongsMethod · 0.95

Calls 1

readMethod · 0.65

Tested by

no test coverage detected