Given a stream aStream, return its tail, i.e the stream deprived of its first element.
aStream
Raises an error in case of an empty list. Evaluates the tail if not already done. tail is mostly an alias for cdr with error handling.
tail
cdr
the list considered
Given a stream
aStream
, return its tail, i.e the stream deprived of its first element.Raises an error in case of an empty list. Evaluates the tail if not already done.
tail
is mostly an alias forcdr
with error handling.