head
trait Collection[A] { def head: A }
head は、このコレクションの最初の要素を返します。
空のコレクションでは、この関数は NoSuchElementException を発生させます。
NoSuchElementException