max

trait Collection[A] {
  def max: A
}

max は、このコレクションの最大の値を返します。

空のコレクションでは、この関数は UnsupportedOperationException 例外を発生させます。