MCPcopy Create free account
hub / github.com/L-JINBIN/ApkDataMultiplexing / readLong

Method readLong

src/bin/io/RandomAccessFile.java:109–109  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

107 }
108
109 default long readLong() throws IOException {
110 return readByte() & 0xFFL | (readByte() & 0xFFL) << 8 | (readByte() & 0xFFL) << 16 | (readByte() & 0xFFL) << 24
111 | (readByte() & 0xFFL) << 32 | (readByte() & 0xFFL) << 40 | (readByte() & 0xFFL) << 48 | (readByte() & 0xFFL) << 56;
112 }

Callers

nothing calls this directly

Implementers 1

BufferedRandomAccessFilesrc/bin/io/BufferedRandomAccessFile.ja

Calls

no outgoing calls

Tested by

no test coverage detected