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

Method writeInt

classpath/java/io/DataOutputStream.java:53–58  ·  view source on GitHub ↗
(int i)

Source from the content-addressed store, hash-verified

51 }
52
53 public void writeInt(int i) throws IOException {
54 write((byte)(i >> 24));
55 write((byte)(i >> 16));
56 write((byte)(i >> 8));
57 write((byte)i);
58 }
59
60 public void writeFloat(float f) throws IOException {
61 writeInt(Float.floatToIntBits(f));

Callers 1

writeFloatMethod · 0.95

Calls 1

writeMethod · 0.95

Tested by

no test coverage detected