MCPcopy Create free account
hub / github.com/ReadyTalk/avian / readLong

Method readLong

classpath/java/io/DataInputStream.java:83–85  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

81 }
82
83 public long readLong() throws IOException {
84 return ((readInt() & 0xffffffffl) << 32) | (readInt() & 0xffffffffl);
85 }
86
87 public char readChar() throws IOException {
88 return (char)readShort();

Callers 1

readDoubleMethod · 0.95

Calls 1

readIntMethod · 0.95

Tested by

no test coverage detected