Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/ReadyTalk/avian
/ writeChar
Method
writeChar
classpath/java/io/DataOutputStream.java:79–82 ·
view source on GitHub ↗
(int ch)
Source
from the content-addressed store, hash-verified
77
}
78
79
public
void
writeChar(
int
ch) throws IOException {
80
write((byte)(ch >> 8));
81
write((byte)ch);
82
}
83
84
public
void
writeChars(String s) throws IOException {
85
for
(char ch : s.toCharArray()) {
Callers
1
writeChars
Method · 0.95
Calls
1
write
Method · 0.95
Tested by
no test coverage detected