MCPcopy Index your code
hub / github.com/processing/processing / write

Method write

core/src/processing/data/FloatDict.java:823–828  ·  view source on GitHub ↗

Write tab-delimited entries out to @param writer

(PrintWriter writer)

Source from the content-addressed store, hash-verified

821 * @param writer
822 */
823 public void write(PrintWriter writer) {
824 for (int i = 0; i < count; i++) {
825 writer.println(keys[i] + "\t" + values[i]);
826 }
827 writer.flush();
828 }
829
830
831 /**

Callers 1

saveMethod · 0.95

Calls 2

printlnMethod · 0.45
flushMethod · 0.45

Tested by

no test coverage detected