minOption

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

minOption は、このコレクションの最小の値を Some に包んで返します。

空のコレクションでは、この関数は None を返します。