org.atnos.eff.EitherCreation$
See theEitherCreation companion trait
Attributes
- Companion:
- trait
- Source:
- EitherEffect.scala
- Graph
- Supertypes
- Self type
- EitherCreation.type
Members list
Concise view
Type members
Inherited types
Attributes
- Inherited from:
- EitherCreation
- Source:
- EitherEffect.scala
Attributes
- Inherited from:
- EitherCreation
- Source:
- EitherEffect.scala
Attributes
- Inherited from:
- EitherCreation
- Source:
- EitherEffect.scala
Value members
Inherited methods
create an Either effect from a value possibly throwing a Throwable
create an Either effect from a value possibly throwing a Throwable
Attributes
- Inherited from:
- EitherCreation
- Source:
- EitherEffect.scala
def fromCatchNonFatal[R, E, A](a: => A)(onThrowable: Throwable => E)(implicit member: MemberIn[[_] =>> Either[E, _$7], R]): Eff[R, A]
create an Either effect from a value possibly throwing an exception
create an Either effect from a value possibly throwing an exception
Attributes
- Inherited from:
- EitherCreation
- Source:
- EitherEffect.scala
def fromEither[R, E, A](Either: Either[E, A])(implicit member: MemberIn[[_] =>> Either[E, _$2], R]): Eff[R, A]
create an Either effect from a single Either value
create an Either effect from a single Either value
Attributes
- Inherited from:
- EitherCreation
- Source:
- EitherEffect.scala
create a failed value
def optionEither[R, E, A](option: Option[A], e: => E)(implicit member: MemberIn[[_] =>> Either[E, _$1], R]): Eff[R, A]
create an Either effect from a single Option value
create an Either effect from a single Option value
Attributes
- Inherited from:
- EitherCreation
- Source:
- EitherEffect.scala
create a correct value