org.parboiled.scala.rules

Rule5

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
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Rule5(matcher: Matcher)

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 append(other: Matcher): Matcher

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

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

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

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

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

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

    Definition Classes
    Any
  13. def clone(): AnyRef

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

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

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

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

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

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

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

    Definition Classes
    Rule
  21. val matcher: Matcher

    Definition Classes
    Rule5Rule
  22. def memoMismatches: Rule5.this.type

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

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

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

    Definition Classes
    AnyRef
  26. def skipNode: Rule5.this.type

    Definition Classes
    Rule
  27. def suppressNode: Rule5.this.type

    Definition Classes
    Rule
  28. def suppressSubnodes: Rule5.this.type

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

    Definition Classes
    AnyRef
  30. def toString(): String

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

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

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

    Definition Classes
    Rule
  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 withMatcher(matcher: Matcher): Rule5.this.type

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

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

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

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

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

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

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

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

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

  45. def ~(other: Rule0): Rule5.this.type

    Connects two rules into a rule a sequence.

    Connects two rules into a rule a sequence.

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

    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
  47. def ~:%(f: (Char) ⇒ Unit): Rule5.this.type

    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
  48. def ~:>[R](f: (Char) ⇒ R): Rule6[A, B, C, D, E, R]

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

    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
  50. def ~>[R](f: (String) ⇒ R): Rule6[A, B, C, D, E, R]

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

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

    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
  53. def ~~%[Y, Z](f: (Y, Z, A, B, C, D, E) ⇒ Unit): PopRule2[Y, Z]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Inherited from PushRule

Inherited from Rule

Inherited from AnyRef

Inherited from Any

Ungrouped