sealed abstract class Rule[A, B] extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Rule
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(value: A): Checked[B]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def andThen[C](that: Rule[B, C]): Rule[A, C]
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def at[P, S, T](prefix: P, lens: PLens[S, T, A, B])(implicit arg0: PathPrefix[P]): Rule[S, T]
  7. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def composeLens[S, T](lens: PLens[S, T, A, B]): Rule[S, T]
  9. def contramap[C](func: (C) ⇒ A): Rule[C, B]
  10. def contramapPath[C, D](path: D)(func: (C) ⇒ A)(implicit arg0: PathPrefix[D]): Rule[C, B]
  11. def emap[C](func: (B) ⇒ Checked[C]): Rule[A, C]
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def flatMap[C](func: (B) ⇒ Rule[A, C]): Rule[A, C]
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def map[C](func: (B) ⇒ C): Rule[A, C]
  20. def mapEachMessage(func: (Message) ⇒ Message): Rule[A, B]
  21. def mapMessages(func: (Messages) ⇒ Messages): Rule[A, B]
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  25. def opt: Rule[Option[A], Option[B]]
  26. def prefix[P](prefix: P)(implicit arg0: PathPrefix[P]): Rule[A, B]
  27. def recover(func: (Messages) ⇒ Checked[B]): Rule[A, B]
  28. def req: Rule[Option[A], B]
  29. def seq[S[_]](implicit arg0: Indexable[S], arg1: Traverse[S]): Rule[S[A], S[B]]
  30. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def zip[C](that: Rule[A, C]): Rule[A, (B, C)]

Inherited from AnyRef

Inherited from Any

Ungrouped