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

Method append

lib/java/io/Writer.java:187–190  ·  view source on GitHub ↗

Appends the character c to the target. This method works the same way as #write(int). @param c the character to append to the target stream. @return this writer. @throws IOException if this writer is closed or another I/O error occurs.

(char c)

Source from the content-addressed store, hash-verified

185 * if this writer is closed or another I/O error occurs.
186 */
187 public Writer append(char c) throws IOException {
188 write(c);
189 return this;
190 }
191
192 /**
193 * Appends the character sequence {@code csq} to the target. This method

Callers

nothing calls this directly

Calls 4

writeMethod · 0.95
toStringMethod · 0.65
subSequenceMethod · 0.65
substringMethod · 0.45

Tested by

no test coverage detected