Is there a built in way of converting Option to a scalaz validation?
Scalaz has a implicit conversion of Option
to OptionW
, which declares the toFailure
and toSuccess
methods.
Scalaz has a implicit conversion of Option
to OptionW
, which declares the toFailure
and toSuccess
methods.