min
trait Collection[A] { def min: A }
min returns the smallest value in this collection.
On empty collections min throws a UnsupportedOperationException exception.
UnsupportedOperationException