Java Array Element Get tail(int[] original)

Here you can find the source of tail(int[] original)

Description

Copies the passed array original into a new array except first element and returns it

License

Open Source License

Parameter

Parameter Description
original the array from which a tail is taken

Return

a new array containing the tail from the original array

Declaration

public static int[] tail(int[] original) 

Method Source Code

//package com.java2s;
/* ---------------------------------------------------------------------
 * Numenta Platform for Intelligent Computing (NuPIC)
 * Copyright (C) 2014, Numenta, Inc.  Unless you have an agreement
 * with Numenta, Inc., for a separate license for this software code, the
 * following terms and conditions apply:
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero Public License version 3 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Affero Public License for more details.
 *
 * You should have received a copy of the GNU Affero Public License
 * along with this program.  If not, see http://www.gnu.org/licenses.
 *
 * http://numenta.org/licenses///from w w  w.  jav a 2 s . c o  m
 * ---------------------------------------------------------------------
 */

import java.util.Arrays;

public class Main {
    /**
     * Copies the passed array <tt>original</tt>  into a new array except first element and returns it
     *
     * @param original the array from which a tail is taken
     * @return a new array containing the tail from the original array
     */
    public static int[] tail(int[] original) {
        return Arrays.copyOfRange(original, 1, original.length);
    }
}

Related

  1. getFrequentElement(int[] bcp)
  2. getFrequentElement(int[] bcp)
  3. getItems(T[] items, int[] indices)
  4. getlast(final T[] array)
  5. getLast(T[] l)
  6. tail(Object[] array)