Returns an empty array when the input is a single-element array.
The single-element array to process.
An empty array.
Returns an empty array when the input is an empty array.
The empty array to process.
An empty array.
Returns a new array with all elements except for the first when the input is a tuple array.
A new array containing all elements of the input array except for the first one.
Returns a new array with all elements except for the first.
This function takes an array and returns a new array containing all the elements except for the first one. If the input array is empty or has only one element, an empty array is returned.
The array to get the tail of.
A new array containing all elements of the input array except for the first one.
Alias