huynhjl
huynhjl

Reputation: 41646

Map on Scalaz Validation failure

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]?

Upvotes: 17

Views: 1620

Answers (2)

Apocalisp
Apocalisp

Reputation: 35054

There is a pair of methods <-: and :-> defined on MAB[M[_,_], A, B] that map on the left and right side of any M[A, B] as long as there is a Bifunctor[M]. Validation happens to be a bifunctor, so you can do this:

((_:NumberFormatException).toString) <-: "123".parseInt

Scala's type inference generally flows from left to right, so this is actually shorter:

"123".parseInt.<-:(_.toString)

And requires less annotation.

Upvotes: 19

Didier Dupont
Didier Dupont

Reputation: 29528

There is a functor on FailProjection. So you could do

v.fail.map(f).validation

(fail to type as FailProjection, validation to get out of it)

Alternatively

v.fold(f(_).failure, _.success)

Both a bit verbose. Maybe someone more familiar with scalaz can come up with something better

Upvotes: 11

Related Questions