tail

trait Collection[A] {
  def tail: Collection[A]
}

tail は、このコレクションの最初の要素以外すべてを返します。

空のコレクションでは、この関数は NoSuchElementException を発生させます。