Scalactic is brought to you by:

case object Pass extends Validation[Nothing] with Product with Serializable

Indicates a validation succeeded.

Source
Validation.scala
Linear Supertypes
Validation[Nothing], Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Pass
  2. Validation
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def &&[F](other: => Validation[F]): Validation[F]

    Ands this Validation with another, passed, Validation.

    Ands this Validation with another, passed, Validation.

    The result of invoking this method will be the result of executing the passed other by-name value.

    other

    the other validation to and with this one

    returns

    the result of anding this Validation with the other, passed, Validation

    Definition Classes
    PassValidation
  2. def productElementName(n: Int): String
    Definition Classes
    Product
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product