(T[] first, T[] second)
| 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 | } |
no outgoing calls
no test coverage detected