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

Method readLong

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

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

()

Source from the content-addressed store, hash-verified

120 * @throws IOException I/O Exception
121 */
122 public long readLong() throws IOException {
123 final int v = readNum();
124 return v == 0x3FFF ? read8() : v;
125 }
126
127 /**
128 * Reads an array of long values.

Callers 5

readMethod · 0.80
readMethod · 0.80
readMethod · 0.80
readMethod · 0.80
readMethod · 0.80

Calls 2

readNumMethod · 0.95
read8Method · 0.95

Tested by

no test coverage detected