MCPcopy Index your code
hub / github.com/benfry/processing4 / write

Method write

core/src/processing/data/IntList.java:855–860  ·  view source on GitHub ↗

Write entries to a PrintWriter, one per line

(PrintWriter writer)

Source from the content-addressed store, hash-verified

853 * Write entries to a PrintWriter, one per line
854 */
855 public void write(PrintWriter writer) {
856 for (int i = 0; i < count; i++) {
857 writer.println(data[i]);
858 }
859 writer.flush();
860 }
861
862
863 /**

Callers 1

saveMethod · 0.95

Calls 2

printlnMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected