MCPcopy Index your code
hub / github.com/apache/groovy / main

Method main

benchmark/bench/revcomp.java:33–45  ·  view source on GitHub ↗
(String[] args)

Source from the content-addressed store, hash-verified

31 }
32
33 public static void main(String[] args) throws IOException {
34 final byte[] buf = new byte[System.in.available()];
35 System.in.read(buf);
36
37 for (int i = 0; i < buf.length;) {
38 while (buf[i++] != '\n');
39 int data = i;
40 while (i < buf.length && buf[i++] != '>');
41 reverse(buf, data, i-2);
42 }
43
44 System.out.write(buf);
45 }
46}

Callers

nothing calls this directly

Calls 3

reverseMethod · 0.95
readMethod · 0.65
writeMethod · 0.65

Tested by

no test coverage detected