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