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

Method writeChars

classpath/java/io/DataOutputStream.java:84–88  ·  view source on GitHub ↗
(String s)

Source from the content-addressed store, hash-verified

82 }
83
84 public void writeChars(String s) throws IOException {
85 for (char ch : s.toCharArray()) {
86 writeChar(ch & 0xffff);
87 }
88 }
89
90 public void writeBytes(String s) throws IOException {
91 out.write(s.getBytes());

Callers

nothing calls this directly

Calls 2

writeCharMethod · 0.95
toCharArrayMethod · 0.80

Tested by

no test coverage detected