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

Method readLongs

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

Reads an array of long values. @param s array size @return array of longs @throws IOException I/O Exception

(final int s)

Source from the content-addressed store, hash-verified

131 * @throws IOException I/O Exception
132 */
133 public long[] readLongs(final int s) throws IOException {
134 final long[] tmp = new long[s];
135 for(int a = 0; a < s; ++a) tmp[a] = read8();
136 return tmp;
137 }
138
139 /**
140 * Read a long value.

Callers 1

TableDiskAccessMethod · 0.80

Calls 1

read8Method · 0.95

Tested by

no test coverage detected