tail
all items of a list except for the first
(list subject) -> list
Returns a list containing all but the first element of subject
.
Returns nil
if subject
is nil
Throws an error if subject
is empty.
Parameters
Name | Type | Description |
---|---|---|
subject |
list | The list to work with |