Searched refs:firstLength (Results 1 – 1 of 1) sorted by relevance
356 final int firstLength = Array.getLength(first); in arrayAppend() local358 final Object res = Array.newInstance(clazz, firstLength + lastLength); in arrayAppend()359 System.arraycopy(first, 0, res, 0, firstLength); in arrayAppend()360 System.arraycopy(last, 0, res, firstLength, lastLength); in arrayAppend()