implicit class Tryizer[T] extends AnyRef
Implicit class that adds a toOr
method to
Try
, which converts Success
to Good
,
and Failure
to Bad
, as well as a
validation
method, which takes one or more functions that validate
the Future
's value.
See the main documentation for trait TrySugar
for more detail and examples.
- Source
- TrySugar.scala
- Alphabetic
- By Inheritance
- Tryizer
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Tryizer(theTry: Try[T])
- theTry
the
Try
to which to addtoOr
andvalidating
methods.
Value Members
- def toOr: Or[T, Throwable]
Converts a
Try
to anOr
, withSuccess
becomingGood
andFailure
becomingBad
. - def validating(hd: (T) => Validation[ErrorMessage], tl: (T) => Validation[ErrorMessage]*): Try[T]
Validates a
Try
using the passed validation functions.Validates a
Try
using the passed validation functions.See the main documentation for trait
TrySugar
for more detail and examples.- returns
a "validated"
Try
, either aTry
with the same value, or if validation failed, a failedTry
containing aValidationFailedException
.