given_Monadic_Either

given given_Monadic_Either[Err]: Monadic[[X] =>> Either[Err, X]]

Type members

Inherited types

type Apply[X] = F[X]
Inherited from
Functor

Value members

Concrete methods

def flatMap[A, B](from: Either[Err, A])(fn: A => Either[Err, B]): Either[Err, B]
def map[A, B](from: Either[Err, A])(fn: A => B): Either[Err, B]
def point[A](value: A): Either[Err, A]