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

Method readShort

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

Source from the content-addressed store, hash-verified

65 }
66
67 public short readShort() throws IOException {
68 return (short)((read0() << 8) | read0());
69 }
70
71 public int readInt() throws IOException {
72 return ((read0() << 24) | (read0() << 16) | (read0() << 8) | read0());

Callers 2

readCharMethod · 0.95
readUnsignedShortMethod · 0.95

Calls 1

read0Method · 0.95

Tested by

no test coverage detected