MCPcopy Create free account
hub / github.com/davidgiven/luje / write

Method write

lib/java/io/Writer.java:97–99  ·  view source on GitHub ↗

Writes the entire character buffer buf to the target. @param buf the non-null array containing characters to write. @throws IOException if this writer is closed or another I/O error occurs.

(char buf[])

Source from the content-addressed store, hash-verified

95 * if this writer is closed or another I/O error occurs.
96 */
97 public void write(char buf[]) throws IOException {
98 write(buf, 0, buf.length);
99 }
100
101 /**
102 * Writes {@code count} characters starting at {@code offset} in {@code buf}

Callers 1

appendMethod · 0.95

Calls 2

lengthMethod · 0.65
getCharsMethod · 0.45

Tested by

no test coverage detected