Class

org.parboiled.scala.rules

Rule5

Related Doc: package rules

Permalink

class Rule5[+A, +B, +C, +D, +E] extends PushRule

A rule pushing 5 new values of given types onto the parsers value stack.

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

Instance Constructors

  1. new Rule5(matcher: Matcher)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def append(other: Matcher): Matcher

    Permalink
    Attributes
    protected
    Definition Classes
    Rule
  5. def append(other: Rule): Matcher

    Permalink
    Attributes
    protected
    Definition Classes
    Rule
  6. def append(f: (Context[Any]) ⇒ Boolean): Matcher

    Permalink
    Attributes
    protected
    Definition Classes
    Rule
  7. def append(action: Action[_]): Matcher

    Permalink
    Attributes
    protected
    Definition Classes
    Rule
  8. def appendChoice(other: Matcher): Matcher

    Permalink
    Attributes
    protected
    Definition Classes
    Rule
  9. def appendChoice(other: Rule): Matcher

    Permalink
    Attributes
    protected
    Definition Classes
    Rule
  10. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def label(label: String): Rule5.this.type

    Permalink
    Definition Classes
    Rule
  19. val matcher: Matcher

    Permalink
    Definition Classes
    Rule5Rule
  20. def memoMismatches: Rule5.this.type

    Permalink
    Definition Classes
    Rule
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. def skipNode: Rule5.this.type

    Permalink
    Definition Classes
    Rule
  25. def suppressNode: Rule5.this.type

    Permalink
    Definition Classes
    Rule
  26. def suppressSubnodes: Rule5.this.type

    Permalink
    Definition Classes
    Rule
  27. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  28. def toString(): String

    Permalink
    Definition Classes
    Rule → AnyRef → Any
  29. def unary_!: Rule0

    Permalink

    Creates a "NOT" syntactic predicate according to the PEG formalism.

    Creates a "NOT" syntactic predicate according to the PEG formalism.

    Definition Classes
    Rule
  30. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. def withMatcher(matcher: Matcher): Rule5.this.type

    Permalink
    Attributes
    protected
    Definition Classes
    Rule5Rule
  34. def |[AA >: A, BB >: B, CC >: C, DD >: D, EE >: E](other: Rule5[AA, BB, CC, DD, EE]): Rule5[AA, BB, CC, DD, EE]

    Permalink
  35. def ~[F, G](other: Rule2[F, G]): Rule7[A, B, C, D, E, F, G]

    Permalink
  36. def ~[F](other: Rule1[F]): Rule6[A, B, C, D, E, F]

    Permalink
  37. def ~[EE >: E, R](other: ReductionRule1[EE, R]): Rule5[A, B, C, D, R]

    Permalink
  38. def ~[DD >: D, EE >: E, R](other: ReductionRule2[DD, EE, R]): Rule4[A, B, C, R]

    Permalink
  39. def ~[CC >: C, DD >: D, EE >: E, R](other: ReductionRule3[CC, DD, EE, R]): Rule3[A, B, R]

    Permalink
  40. def ~[EE >: E](other: PopRule1[EE]): Rule4[A, B, C, D]

    Permalink
  41. def ~[DD >: D, EE >: E](other: PopRule2[DD, EE]): Rule3[A, B, C]

    Permalink
  42. def ~[CC >: C, DD >: D, EE >: E](other: PopRule3[CC, DD, EE]): Rule2[A, B]

    Permalink
  43. def ~(other: Rule0): Rule5.this.type

    Permalink

    Connects two rules into a rule a sequence.

    Connects two rules into a rule a sequence.

    Definition Classes
    Rule
  44. def ~%(f: (String) ⇒ Unit): Rule5.this.type

    Permalink

    Creates a simple parser action with the input text matched by the immediately preceding rule as parameter.

    Creates a simple parser action with the input text matched by the immediately preceding rule as parameter.

    Definition Classes
    Rule
  45. def ~:%(f: (Char) ⇒ Unit): Rule5.this.type

    Permalink

    Creates a simple parser action with the first char of the input text matched by the immediately preceding rule as parameter.

    Creates a simple parser action with the first char of the input text matched by the immediately preceding rule as parameter.

    Definition Classes
    Rule
  46. def ~:>[R](f: (Char) ⇒ R): Rule6[A, B, C, D, E, R]

    Permalink
  47. def ~:?(f: (Char) ⇒ Boolean): Rule5.this.type

    Permalink

    Creates a semantic predicate on the first char of the input text matched by the immediately preceding rule.

    Creates a semantic predicate on the first char of the input text matched by the immediately preceding rule.

    Definition Classes
    Rule
  48. def ~>[R](f: (String) ⇒ R): Rule6[A, B, C, D, E, R]

    Permalink
  49. def ~>>[R](f: (IndexRange) ⇒ R): Rule6[A, B, C, D, E, R]

    Permalink
  50. def ~?(f: (String) ⇒ Boolean): Rule5.this.type

    Permalink

    Creates a semantic predicate on the input text matched by the immediately preceding rule.

    Creates a semantic predicate on the input text matched by the immediately preceding rule.

    Definition Classes
    Rule
  51. def ~~%[Y, Z](f: (Y, Z, A, B, C, D, E) ⇒ Unit): PopRule2[Y, Z]

    Permalink
  52. def ~~%[Z](f: (Z, A, B, C, D, E) ⇒ Unit): PopRule1[Z]

    Permalink
  53. def ~~%(f: (A, B, C, D, E) ⇒ Unit): Rule0

    Permalink
  54. def ~~%(f: (B, C, D, E) ⇒ Unit): Rule1[A]

    Permalink
  55. def ~~%(f: (C, D, E) ⇒ Unit): Rule2[A, B]

    Permalink
  56. def ~~%(f: (D, E) ⇒ Unit): Rule3[A, B, C]

    Permalink
  57. def ~~%(f: (E) ⇒ Unit): Rule4[A, B, C, D]

    Permalink
  58. def ~~>[Y, Z, R](f: (Y, Z, A, B, C, D, E) ⇒ R): ReductionRule2[Y, Z, R]

    Permalink
  59. def ~~>[Z, R](f: (Z, A, B, C, D, E) ⇒ R): ReductionRule1[Z, R]

    Permalink
  60. def ~~>[R](f: (A, B, C, D, E) ⇒ R): Rule1[R]

    Permalink
  61. def ~~>[R](f: (B, C, D, E) ⇒ R): Rule2[A, R]

    Permalink
  62. def ~~>[R](f: (C, D, E) ⇒ R): Rule3[A, B, R]

    Permalink
  63. def ~~>[R](f: (D, E) ⇒ R): Rule4[A, B, C, R]

    Permalink
  64. def ~~>[R](f: (E) ⇒ R): Rule5[A, B, C, D, R]

    Permalink
  65. def ~~?[Y, Z](f: (Y, Z, A, B, C, D, E) ⇒ Boolean): PopRule2[Y, Z]

    Permalink
  66. def ~~?[Z](f: (Z, A, B, C, D, E) ⇒ Boolean): PopRule1[Z]

    Permalink
  67. def ~~?(f: (A, B, C, D, E) ⇒ Boolean): Rule0

    Permalink
  68. def ~~?(f: (B, C, D, E) ⇒ Boolean): Rule1[A]

    Permalink
  69. def ~~?(f: (C, D, E) ⇒ Boolean): Rule2[A, B]

    Permalink
  70. def ~~?(f: (D, E) ⇒ Boolean): Rule3[A, B, C]

    Permalink
  71. def ~~?(f: (E) ⇒ Boolean): Rule4[A, B, C, D]

    Permalink
  72. def ~~~%(f: (A, B, C, D, E) ⇒ Unit): Rule5[A, B, C, D, E]

    Permalink
  73. def ~~~%(f: (B, C, D, E) ⇒ Unit): Rule5[A, B, C, D, E]

    Permalink
  74. def ~~~%(f: (C, D, E) ⇒ Unit): Rule5[A, B, C, D, E]

    Permalink
  75. def ~~~%(f: (D, E) ⇒ Unit): Rule5[A, B, C, D, E]

    Permalink
  76. def ~~~%(f: (E) ⇒ Unit): Rule5[A, B, C, D, E]

    Permalink
  77. def ~~~>[R](f: (A, B, C, D, E) ⇒ R): Rule6[A, B, C, D, E, R]

    Permalink
  78. def ~~~>[R](f: (B, C, D, E) ⇒ R): Rule6[A, B, C, D, E, R]

    Permalink
  79. def ~~~>[R](f: (C, D, E) ⇒ R): Rule6[A, B, C, D, E, R]

    Permalink
  80. def ~~~>[R](f: (D, E) ⇒ R): Rule6[A, B, C, D, E, R]

    Permalink
  81. def ~~~>[R](f: (E) ⇒ R): Rule6[A, B, C, D, E, R]

    Permalink
  82. def ~~~?(f: (A, B, C, D, E) ⇒ Boolean): Rule5[A, B, C, D, E]

    Permalink
  83. def ~~~?(f: (B, C, D, E) ⇒ Boolean): Rule5[A, B, C, D, E]

    Permalink
  84. def ~~~?(f: (C, D, E) ⇒ Boolean): Rule5[A, B, C, D, E]

    Permalink
  85. def ~~~?(f: (D, E) ⇒ Boolean): Rule5[A, B, C, D, E]

    Permalink
  86. def ~~~?(f: (E) ⇒ Boolean): Rule5[A, B, C, D, E]

    Permalink

Inherited from PushRule

Inherited from Rule

Inherited from AnyRef

Inherited from Any

Ungrouped