robots

PValidator

final case class PValidator[F[_], E, A, B](validate: (A) ⇒ F[E], f: (A) ⇒ B)(implicit FF: Traverse[F], M: MonoidK[F]) extends Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. PValidator
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PValidator(validate: (A) ⇒ F[E], f: (A) ⇒ B)(implicit FF: Traverse[F], M: MonoidK[F])

Value Members

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

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

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

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

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

    Definition Classes
    Any
  6. def all[M[_], C](f: (A) ⇒ M[C])(that: PValidator[F, E, C, _])(implicit arg0: Traverse[M]): PValidator[F, E, A, B]

  7. def all2[M[_], C, D](f: (A) ⇒ C, g: (A) ⇒ M[D])(that: PValidator[F, E, (C, D), _])(implicit TM: Traverse[M]): PValidator[F, E, A, B]

  8. def allIndexed[M[_], C](g: (A) ⇒ M[C])(that: PValidator[F, E, (C, Int), _])(implicit TM: Traverse[M]): PValidator[F, E, A, B]

  9. def and(that: PValidator[F, E, A, _]): PValidator[F, E, A, B]

  10. def andThen[C](that: PValidator[F, E, B, C]): PValidator[F, E, A, C]

  11. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  12. def at[M[_], C](f: (A) ⇒ M[C], i: Long)(that: PValidator[F, E, Option[C], _])(implicit TM: Traverse[M]): PValidator[F, E, A, B]

  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def contramap[Z](g: (Z) ⇒ A): PValidator[F, E, Z, B]

  15. def dimap[Z, C](g: (Z) ⇒ A)(h: (B) ⇒ C): PValidator[F, E, Z, C]

  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. val f: (A) ⇒ B

  18. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. def first[M[_], C](f: (A) ⇒ M[C])(that: PValidator[F, E, Option[C], _])(implicit FM: Foldable[M]): PValidator[F, E, A, B]

  20. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  21. def has[C](f: (A) ⇒ C)(that: PValidator[F, E, C, _]): PValidator[F, E, A, B]

  22. def has2[C, D](f: (A) ⇒ C, g: (A) ⇒ D)(that: PValidator[F, E, (C, D), _]): PValidator[F, E, A, B]

  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def leftMap[EE](g: (E) ⇒ EE): PValidator[F, EE, A, B]

  25. def map[C](g: (B) ⇒ C): PValidator[F, E, A, C]

  26. def map2[C, D](that: PValidator[F, E, A, C])(g: (B, C) ⇒ D): PValidator[F, E, A, D]

  27. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  30. def optional: PValidator[F, E, Option[A], Option[B]]

  31. def or[C](that: PValidator[F, E, C, B]): PValidator[F, E, Either[A, C], B]

  32. def over[M[_]](implicit TM: Traverse[M]): PValidator[F, E, M[A], M[B]]

  33. def product[C](that: PValidator[F, E, A, C]): PValidator[F, E, A, (B, C)]

  34. def required(e: F[E]): PValidator[F, E, Option[A], B]

  35. def run[G[_]](a: A)(implicit A: ApplicativeError[G, F[E]]): G[B]

  36. def runK[G[_], H[_]](a: A)(g: ~>[F, H])(implicit A: ApplicativeError[G, H[E]]): G[B]

  37. def runNel[G[_, _]](a: A)(implicit A: ApplicativeError[[β$0$]G[NonEmptyList[E], β$0$], NonEmptyList[E]]): G[NonEmptyList[E], B]

  38. def runWith[G[_], EE](a: A)(g: (F[E]) ⇒ EE)(implicit A: ApplicativeError[G, EE]): G[B]

  39. def run_[G[_]](a: A)(implicit A: ApplicativeError[G, Unit]): G[B]

  40. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  41. val validate: (A) ⇒ F[E]

  42. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped