tail
trait Collection[A] { def tail: Collection[A] }
tail returns all but the first element in this collection.
On empty collections this function throws a NoSuchElementException exception.
NoSuchElementException