scalaz

Validation

trait Validation [+E, +A] extends AnyRef

Attributes
sealed
Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. Validation
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Value Members

  1. def != (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  2. def != (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  3. def ## (): Int

    Attributes
    final
    Definition Classes
    AnyRef → Any
  4. def == (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  5. def == (arg0: Any): Boolean

    Attributes
    final
    Definition Classes
    Any
  6. def >>*<< [EE >: E, AA >: A] (x: Validation[EE, AA])(implicit arg0: Semigroup[EE], arg1: Semigroup[AA]): Validation[EE, AA]

  7. def asInstanceOf [T0] : T0

    Attributes
    final
    Definition Classes
    Any
  8. def clone (): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. def either : Either[E, A]

  10. def eq (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  11. def equals (arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  12. def exists (f: (A) ⇒ Boolean): Boolean

  13. def fail : FailProjection[E, A]

  14. def finalize (): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  15. def flatMap [EE >: E, B] (f: (A) ⇒ Validation[EE, B]): Validation[EE, B]

  16. def fold [X] (failure: (E) ⇒ X, success: (A) ⇒ X): X

  17. def forall (f: (A) ⇒ Boolean): Boolean

  18. def foreach [U] (f: (A) ⇒ U): Unit

  19. def getClass (): java.lang.Class[_]

    Attributes
    final
    Definition Classes
    AnyRef → Any
  20. def hashCode (): Int

    Definition Classes
    AnyRef → Any
  21. def isFailure : Boolean

  22. def isInstanceOf [T0] : Boolean

    Attributes
    final
    Definition Classes
    Any
  23. def isSuccess : Boolean

  24. def lift [M[_], AA >: A] (implicit arg0: Pure[M]): Validation[E, M[AA]]

  25. def liftFailNel : Validation[NonEmptyList[E], A]

    Wraps the failure value in a NonEmptyList

  26. def map [B] (f: (A) ⇒ B): Validation[E, B]

  27. def ne (arg0: AnyRef): Boolean

    Attributes
    final
    Definition Classes
    AnyRef
  28. def notify (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  29. def notifyAll (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
  30. def synchronized [T0] (arg0: ⇒ T0): T0

    Attributes
    final
    Definition Classes
    AnyRef
  31. def toOption : Option[A]

  32. def toString (): String

    Definition Classes
    AnyRef → Any
  33. def wait (): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  34. def wait (arg0: Long, arg1: Int): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  35. def wait (arg0: Long): Unit

    Attributes
    final
    Definition Classes
    AnyRef
    Annotations
    @throws()
  36. def | [AA >: A] (f: ⇒ AA): AA

  37. def ||| [AA >: A] (f: (E) ⇒ AA): AA

Inherited from AnyRef

Inherited from Any