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

Method writeFloat

classpath/java/io/DataOutputStream.java:60–62  ·  view source on GitHub ↗
(float f)

Source from the content-addressed store, hash-verified

58 }
59
60 public void writeFloat(float f) throws IOException {
61 writeInt(Float.floatToIntBits(f));
62 }
63
64 public void writeDouble(double d) throws IOException {
65 writeLong(Double.doubleToLongBits(d));

Callers

nothing calls this directly

Calls 2

writeIntMethod · 0.95
floatToIntBitsMethod · 0.95

Tested by

no test coverage detected