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

Method readInt

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

Source from the content-addressed store, hash-verified

69 }
70
71 public int readInt() throws IOException {
72 return ((read0() << 24) | (read0() << 16) | (read0() << 8) | read0());
73 }
74
75 public float readFloat() throws IOException {
76 return Float.floatToIntBits(readInt());

Callers 2

readFloatMethod · 0.95
readLongMethod · 0.95

Calls 1

read0Method · 0.95

Tested by

no test coverage detected