MCPcopy Index your code
hub / github.com/davidgiven/luje / print

Method print

lib/java/io/PrintStream.java:392–394  ·  view source on GitHub ↗

Prints the string representation of the specified character array to the target stream. @param charArray the character array to print to the target stream. @see #print(String)

(char[] charArray)

Source from the content-addressed store, hash-verified

390 * @see #print(String)
391 */
392 public void print(char[] charArray) {
393 print(new String(charArray, 0, charArray.length));
394 }
395
396 /**
397 * Prints the string representation of the specified character to the target

Callers 3

newlineMethod · 0.95
printlnMethod · 0.95
appendMethod · 0.95

Calls 4

valueOfMethod · 0.95
setErrorMethod · 0.95
writeMethod · 0.95
getBytesMethod · 0.45

Tested by

no test coverage detected