LeftProjectionT

final
class LeftProjectionT[F[_], A, B](val lazyEitherT: LazyEitherT[F, A, B])
class Object
trait Matchable
class Any

Value members

Concrete methods

def exists(f: (=> A) => Boolean)(implicit F: Functor[F]): F[Boolean]
def flatMap[C](f: (=> A) => LazyEitherT[F, C, B])(implicit M: Monad[F]): LazyEitherT[F, C, B]
def forall(f: (=> A) => Boolean)(implicit F: Functor[F]): F[Boolean]
def getOrElse(default: => A)(implicit F: Functor[F]): F[A]
def map[C](f: (=> A) => C)(implicit F: Functor[F]): LazyEitherT[F, C, B]
def orElse(x: => LazyEitherT[F, A, B])(implicit m: Bind[F]): LazyEitherT[F, A, B]
def toLazyOption(implicit F: Functor[F]): LazyOptionT[F, A]
def toList(implicit F: Functor[F]): F[List[A]]
def toOption(implicit F: Functor[F]): OptionT[F, A]
def toStream(implicit F: Functor[F]): F[Stream[A]]

Concrete fields

val lazyEitherT: LazyEitherT[F, A, B]