lastOption

trait Collection[A] {
  def lastOption: Option[A]
}

lastOption は、このコレクションの最後の要素を Some に包んで返します。

空のコレクションでは最後の要素がないので、この関数は None を返します。