import scalaz._
import Scalaz._
"abc".parseInt
This will return a Validation[NumberFormatException, Int].
Is there a way I can apply a function on the failure side (such as toString) to get a Validation[String, Int]?
|
|
|
There is a pair of methods
Scala's type inference generally flows from left to right, so this is actually shorter:
And requires less annotation. |
|||||
|
|
There is a functor on FailProjection. So you could do
(fail to type as FailProjection, validation to get out of it) Alternatively
Both a bit verbose. Maybe someone more familiar with scalaz can come up with something better |
|||||||||||||
|