Java Utililty Methods Array Element Get

List of utility methods to do Array Element Get

Description

The list of methods to do Array Element Get are organized into topic(s).

Method

int[]tail(int[] original)
Copies the passed array original into a new array except first element and returns it
return Arrays.copyOfRange(original, 1, original.length);
Object[]tail(Object[] array)
tail
if (array.length >= 1) {
    return copyOfRange(array, 1, array.length);
return new Object[0];