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

Method write

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

Source from the content-addressed store, hash-verified

4340 }
4341
4342 void write(DataOutputStream output) throws IOException {
4343 output.writeInt(size());
4344 for (String str : indexToData) {
4345 output.writeUTF(str);
4346 }
4347 }
4348
4349 private void writeln(PrintWriter writer) throws IOException {
4350 for (String str : indexToData) {

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.95
writeUTFMethod · 0.80

Tested by

no test coverage detected