Given a list aList, return its tail, i.e the list deprived of its first element.
aList
Raises an error in case of an empty list.
tail is mostly an alias for cdr with error handling.
tail
cdr
the list considered
Error - if the list is empty
Given a list
aList
, return its tail, i.e the list deprived of its first element.Raises an error in case of an empty list.
tail
is mostly an alias forcdr
with error handling.