_rest

Produces everything but the first thing from the received context. -- Function
Anything -> _rest -> The same Type
Receives
A List of anything
Produces
The List of everything except the first element, or None if the received List had fewer than two elements in it.
Often you have a List, and you want to slice off the first item (using _first). You then use _rest to handle everything else.