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

Method write

core/src/processing/data/Table.java:4243–4248  ·  view source on GitHub ↗
(DataOutputStream output)

Source from the content-addressed store, hash-verified

4241 }
4242
4243 void write(DataOutputStream output) throws IOException {
4244 output.writeInt(size());
4245 for (String str : indexToData) {
4246 output.writeUTF(str);
4247 }
4248 }
4249
4250 private void writeln(PrintWriter writer) throws IOException {
4251 for (String str : indexToData) {

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.95
writeUTFMethod · 0.80

Tested by

no test coverage detected