tail

Returns the tail of a list.

If list is a pair, tail returns the value of the tail slot.  If list is the empty list, tail returns the empty list.

tail (#(4, 5, 6))
⇒ #(5, 6)
tail (#())
⇒ #()

Exported from

Modifiers

sealed

Arguments

listAn instance of <object>.

Values

#rest objectsInstances of <object>.
Returns the tail of a list.
The common-dylan module.
Whenever possible, we have tried to keep the Dylan module pristine and unextended, preferring to add our extensions to separate modules or libraries.
The class of all Dylan objects.