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

Method readDouble

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

Source from the content-addressed store, hash-verified

77 }
78
79 public double readDouble() throws IOException {
80 return Double.doubleToLongBits(readLong());
81 }
82
83 public long readLong() throws IOException {
84 return ((readInt() & 0xffffffffl) << 32) | (readInt() & 0xffffffffl);

Callers

nothing calls this directly

Calls 2

doubleToLongBitsMethod · 0.95
readLongMethod · 0.95

Tested by

no test coverage detected