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

Method append

lib/java/io/PrintStream.java:727–730  ·  view source on GitHub ↗

Appends the character c to the target stream. This method works the same way as #print(char). @param c the character to append to the target stream. @return this stream.

(char c)

Source from the content-addressed store, hash-verified

725 * @return this stream.
726 */
727 public PrintStream append(char c) {
728 print(c);
729 return this;
730 }
731
732 /**
733 * Appends the character sequence {@code csq} to the target stream. This

Callers

nothing calls this directly

Calls 4

printMethod · 0.95
toStringMethod · 0.65
subSequenceMethod · 0.65
substringMethod · 0.45

Tested by

no test coverage detected