I wonder why scala.Option doesn't have a method fold like this defined:
fold(ifSome: A => B , ifNone: => B)
equivalent to
map(ifSome).getOrElse(ifNone)
Is there no better than using map + getOrElse?
|
You can do:
or
(Both solutions will evaluate Edit: But what you really want is Scalaz’s catamorphism
defined as (where
which is equivalent to Although I should remark that you should only use cata when it is the ‘more natural’ way of expressing it. There are many cases where a simple |
|||||||||||
|
|
I personally find methods like
Do you really think this is clearer than
In fact I would argue that neither is preferable over the good old
As always, there's a limit where additional abstraction does not give you benefits and turns counter-productive. |
|||||
|
|
As mentioned by Debilski, you can use Scalaz's
Now, if the value you want in the
So,
becomes
Personally, I think
or
In fact, this would be nice to have for all algebraic data structures. |
||||
|
|
|
It was finally added in Scala 2.10, with the signature |
|||
|
|
else: => B--and actually it shouldn't be calledelsesince that's a reserved word. But anyway, you want the option-is-empty case to be passed by name so you get lazy evaluation. – Rex Kerr Mar 16 '11 at 16:56foldto be just something else to to learn. Maybe I need my mind renewed. – Bradford Mar 16 '11 at 20:48