MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / concat

Method concat

src/main/java/Start.java:10–14  ·  view source on GitHub ↗
(T[] first, T[] second)

Source from the content-addressed store, hash-verified

8 }
9
10 public static <T> T[] concat(T[] first, T[] second) {
11 T[] result = Arrays.copyOf(first, first.length + second.length);
12 System.arraycopy(second, 0, result, first.length, second.length);
13 return result;
14 }
15}

Callers 5

mainMethod · 0.95
iteratorMethod · 0.80
iteratorMethod · 0.80
iteratorMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected