Invalid

besom.util.Validated.Invalid
final case class Invalid[+E, +A](e: NonEmptyVector[E]) extends Validated[E, A]

Members list

Value members

Inherited methods

def filterOrError[EE >: E](p: A => Boolean)(e: EE): Validated[EE, A]

Attributes

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

Attributes

Inherited from:
Validated
def getOrElse[B >: A](default: => B): B

Attributes

Inherited from:
Validated
def lmap[EE](f: E => EE): Validated[EE, A]

Attributes

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

Attributes

Inherited from:
Validated
def orElse[EE >: E, B >: A](that: => Validated[EE, B]): Validated[EE, B]

Attributes

Inherited from:
Validated

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
def zip[EE >: E, B](vb: Validated[EE, B])(using z: Zippable[A, B]): Validated[EE, Out]

Attributes

Inherited from:
Validated
def zipWith[EE >: E, B, C](vb: Validated[EE, B])(f: (A, B) => C): Validated[EE, C]

Attributes

Inherited from:
Validated