Packages

t

scala.tools.scalap.scalax.rules

RulesWithState

trait RulesWithState extends Rules with StateRules

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RulesWithState
  2. StateRules
  3. Rules
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class DefaultRule[In, Out, A, X] extends Rule[In, Out, A, X]
    Definition Classes
    Rules
  2. trait FromRule[In] extends AnyRef
    Definition Classes
    Rules
  3. type Rule[+A, +X] = rules.Rule[S, S, A, X]
    Definition Classes
    StateRules
  4. abstract type S
    Definition Classes
    StateRules

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from RulesWithState to any2stringadd[RulesWithState] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (RulesWithState, B)
    Implicit
    This member is added by an implicit conversion from RulesWithState to ArrowAssoc[RulesWithState] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def allOf[A, X](rules: Seq[Rule[A, X]]): (S) ⇒ Result[S, List[A], X]

    Create a rule that succeeds if all of the given rules succeed.

    Create a rule that succeeds if all of the given rules succeed.

    rules

    the rules to apply in sequence.

    Definition Classes
    StateRules
  7. def anyOf[A, X](rules: Seq[Rule[A, X]]): rules.Rule[S, S, collection.immutable.List[A], X]

    Create a rule that succeeds with a list of all the provided rules that succeed.

    Create a rule that succeeds with a list of all the provided rules that succeed.

    rules

    the rules to apply in sequence.

    Definition Classes
    StateRules
  8. def apply[A, X](f: (S) ⇒ Result[S, A, X]): rules.Rule[S, S, A, X]
    Definition Classes
    StateRules
  9. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  10. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  11. def cond(f: (S) ⇒ Boolean): rules.Rule[S, S, S, Nothing]

    Create a rule that identities if f(in) is true.

    Create a rule that identities if f(in) is true.

    Definition Classes
    StateRules
  12. def ensuring(cond: (RulesWithState) ⇒ Boolean, msg: ⇒ Any): RulesWithState
    Implicit
    This member is added by an implicit conversion from RulesWithState to Ensuring[RulesWithState] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: (RulesWithState) ⇒ Boolean): RulesWithState
    Implicit
    This member is added by an implicit conversion from RulesWithState to Ensuring[RulesWithState] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean, msg: ⇒ Any): RulesWithState
    Implicit
    This member is added by an implicit conversion from RulesWithState to Ensuring[RulesWithState] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: Boolean): RulesWithState
    Implicit
    This member is added by an implicit conversion from RulesWithState to Ensuring[RulesWithState] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  18. def error[X](err: X): rules.Rule[Any, Nothing, Nothing, X]
    Definition Classes
    Rules
  19. def error[In]: rules.Rule[In, Nothing, Nothing, In]
    Definition Classes
    Rules
  20. def expect[In, Out, A, Any](rule: rules.Rule[In, Out, A, Any]): (In) ⇒ A

    Converts a rule into a function that throws an Exception on failure.

    Converts a rule into a function that throws an Exception on failure.

    Definition Classes
    Rules
  21. val factory: RulesWithState
    Definition Classes
    RulesWithStateStateRules
  22. def failure: rules.Rule[Any, Nothing, Nothing, Nothing]
    Definition Classes
    Rules
  23. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from RulesWithState to StringFormat[RulesWithState] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. def from[In]: FromRule[In]
    Definition Classes
    Rules
  26. def get: rules.Rule[S, S, S, Nothing]
    Definition Classes
    StateRules
  27. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. implicit def inRule[In, Out, A, X](rule: rules.Rule[In, Out, A, X]): InRule[In, Out, A, X]
    Definition Classes
    Rules
  30. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. def nil: rules.Rule[S, S, collection.immutable.Nil.type, Nothing]
    Definition Classes
    StateRules
  33. def none: rules.Rule[S, S, None.type, Nothing]
    Definition Classes
    StateRules
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  36. def oneOf[In, Out, A, X](rules: rules.Rule[In, Out, A, X]*): rules.Rule[In, Out, A, X]
    Definition Classes
    Rules
  37. def read[A](f: (S) ⇒ A): rules.Rule[S, S, A, Nothing]
    Definition Classes
    StateRules
  38. def repeatUntil[T, X](rule: Rule[(T) ⇒ T, X])(finished: (T) ⇒ Boolean)(initial: T): rules.Rule[S, S, T, X]

    Repeatedly apply a rule from initial value until finished condition is met.

    Repeatedly apply a rule from initial value until finished condition is met.

    Definition Classes
    StateRules
  39. implicit def rule[In, Out, A, X](f: (In) ⇒ Result[Out, A, X]): rules.Rule[In, Out, A, X]
    Definition Classes
    Rules
  40. def ruleWithName[In, Out, A, X](_name: String, f: (In) ⇒ Result[Out, A, X]): rules.Rule[In, Out, A, X] with Name
    Definition Classes
    Rules
  41. implicit def seqRule[In, A, X](rule: rules.Rule[In, In, A, X]): SeqRule[In, A, X]
    Definition Classes
    Rules
  42. def set(s: ⇒ S): rules.Rule[S, S, S, Nothing]
    Definition Classes
    StateRules
  43. def state[s]: StateRules { type S = s }
    Definition Classes
    Rules
  44. def success[Out, A](out: Out, a: A): rules.Rule[Any, Out, A, Nothing]
    Definition Classes
    Rules
  45. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. def unit[A](a: ⇒ A): rules.Rule[S, S, A, Nothing]
    Definition Classes
    StateRules
  48. def update(f: (S) ⇒ S): rules.Rule[S, S, S, Nothing]
    Definition Classes
    StateRules
  49. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  52. def [B](y: B): (RulesWithState, B)
    Implicit
    This member is added by an implicit conversion from RulesWithState to ArrowAssoc[RulesWithState] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from StateRules

Inherited from Rules

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from RulesWithState to any2stringadd[RulesWithState]

Inherited by implicit conversion StringFormat from RulesWithState to StringFormat[RulesWithState]

Inherited by implicit conversion Ensuring from RulesWithState to Ensuring[RulesWithState]

Inherited by implicit conversion ArrowAssoc from RulesWithState to ArrowAssoc[RulesWithState]

Ungrouped