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

Method writeLong

classpath/java/io/DataOutputStream.java:68–77  ·  view source on GitHub ↗
(long l)

Source from the content-addressed store, hash-verified

66 }
67
68 public void writeLong(long l) throws IOException {
69 write((byte)(l >> 56));
70 write((byte)(l >> 48));
71 write((byte)(l >> 40));
72 write((byte)(l >> 32));
73 write((byte)(l >> 24));
74 write((byte)(l >> 16));
75 write((byte)(l >> 8));
76 write((byte)l);
77 }
78
79 public void writeChar(int ch) throws IOException {
80 write((byte)(ch >> 8));

Callers 1

writeDoubleMethod · 0.95

Calls 1

writeMethod · 0.95

Tested by

no test coverage detected