I’m currently a little tired so I might be missing the obvious.
I have a var _minVal: Option[Double], which shall hold the minimal value contained in a collection of Doubles (or None, if the collection is empty)
When adding a new item to the collection, I have too check if _minVal is either None or greater than the new item (=candidate for new mimimum).
I’ve gone from
_minVal = Some(_minVal match {
case Some(oldMin) => if (candidate < oldMin) candidate
else oldMin
case None => candidate
})
(not very DRY) to
_minVal = Some(min(_minVal getOrElse candidate, candidate))
but still think I might be missing something…
minmethod of Scala's great collections?List(2.0, 1.2, 3.4).minprints out 1.2 – agilesteel Aug 12 '11 at 20:45O(1)during every insertion is better thanO(n)on demand. /e: Luigi’s ninjapost says it :) – flying sheep Aug 12 '11 at 21:07