Searched refs:inputB (Results 1 – 1 of 1) sorted by relevance
236 private static<T> T[] concat(Class<T> componentType, T[] inputA, T[] inputB) { in concat() argument237 T[] output = (T[]) Array.newInstance(componentType, inputA.length + inputB.length); in concat()239 System.arraycopy(inputB, 0, output, inputA.length, inputB.length); in concat()