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

Method writeFloat

classpath/java/io/ObjectOutputStream.java:143–145  ·  view source on GitHub ↗
(float v)

Source from the content-addressed store, hash-verified

141 }
142
143 public void writeFloat(float v) throws IOException {
144 writeInt(Float.floatToIntBits(v));
145 }
146
147 public void writeDouble(double v) throws IOException {
148 writeLong(Double.doubleToLongBits(v));

Callers

nothing calls this directly

Calls 2

writeIntMethod · 0.95
floatToIntBitsMethod · 0.95

Tested by

no test coverage detected