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

Method write

core/src/processing/data/LongDict.java:792–797  ·  view source on GitHub ↗

Write tab-delimited entries to a PrintWriter

(PrintWriter writer)

Source from the content-addressed store, hash-verified

790 * Write tab-delimited entries to a PrintWriter
791 */
792 public void write(PrintWriter writer) {
793 for (int i = 0; i < count; i++) {
794 writer.println(keys[i] + "\t" + values[i]);
795 }
796 writer.flush();
797 }
798
799
800 /**

Callers 1

saveMethod · 0.95

Calls 2

printlnMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected