final case class DecodeResultOps[F[_], T](dr: DecodeResult[F, T])(implicit F: MonadError[F, Throwable]) extends Product with Serializable
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- DecodeResultOps
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
- new DecodeResultOps(dr: DecodeResult[F, T])(implicit F: MonadError[F, Throwable])
Value Members
- val dr: DecodeResult[F, T]
-
def
toF: F[T]
Flatten
EitherT[F,DecodeFailure,T]
.Flatten
EitherT[F,DecodeFailure,T]
. Push any DecodeFailure as the error into aF[T]
.