And

final case
class And[I](left: Validation[I, Unit], right: Validation[I, Unit]) extends Validation[I, Unit]
trait Serializable
trait Product
trait Equals
class Validation[I, Unit]
class Object
trait Matchable
class Any

Value members

Concrete methods

override
def errors(input: I): List[Error]
Definition Classes
override
def run(input: I): ValidatedNel[Error, Unit]
Definition Classes

Inherited methods

final
def andThen[T](validation: Validation[Unit, T]): Validation[I, T]
Inherited from
Validation
final
def collect[T](f: PartialFunction[Unit, T]): Validation[I, T]
Inherited from
Validation
final
def map[T](f: Unit => T): Validation[I, T]
Inherited from
Validation
final
def modifyError(pf: PartialFunction[Error, Error]): Validation[I, Unit]
Inherited from
Validation
final
def modifyErrors(f: NonEmptyList[Error] => NonEmptyList[Error]): Validation[I, Unit]
Inherited from
Validation
def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product
final
def withError(error: Error): Validation[I, Unit]
Inherited from
Validation
final
def withErrors(errors: NonEmptyList[Error]): Validation[I, Unit]
Inherited from
Validation