Invalid

libretto.lambda.util.Validated.Invalid
final case class Invalid[+E, A](errors: NonEmptyList[E])

Members list

Value members

Inherited methods

def emap[F](f: E => F): Validated[F, A]

Attributes

Inherited from:
Validated
def flatMap[E1 >: E, B](f: A => Validated[E1, B]): Validated[E1, B]

Attributes

Inherited from:
Validated
def map[B](f: A => B): Validated[E, B]

Attributes

Inherited from:
Validated
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product
def recoverWith[F, AA >: A](f: NonEmptyList[E] => Validated[F, AA]): Validated[F, AA]

Attributes

Inherited from:
Validated
def valueOr[AA >: A](f: NonEmptyList[E] => AA): AA

Attributes

Inherited from:
Validated
infix def zip[E1 >: E, B](that: Validated[E1, B]): Validated[E1, (A, B)]

Attributes

Inherited from:
Validated