maxOption
trait Collection[A] { def maxOption: Option[A] }
maxOption は、このコレクションの最大の値を Some に包んで返します。
Some
空のコレクションでは、この関数は None を返します。
None