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

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

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

Instance Constructors

  1. new Rule6(matcher: Matcher)

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 append(other: Matcher): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  5. def append(other: Rule): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  6. def append(f: (Context[Any]) => Boolean): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  7. def append(action: Action[_]): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  8. def appendChoice(other: Matcher): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  9. def appendChoice(other: Rule): Matcher
    Attributes
    protected
    Definition Classes
    Rule
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def label(label: String): Rule6.this.type
    Definition Classes
    Rule
  18. val matcher: Matcher
    Definition Classes
    Rule6Rule
  19. def memoMismatches: Rule6.this.type
    Definition Classes
    Rule
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  23. def skipNode: Rule6.this.type
    Definition Classes
    Rule
  24. def suppressNode: Rule6.this.type
    Definition Classes
    Rule
  25. def suppressSubnodes: Rule6.this.type
    Definition Classes
    Rule
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. def toString(): String
    Definition Classes
    Rule → AnyRef → Any
  28. 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
  29. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. def withMatcher(matcher: Matcher): Rule6.this.type
    Attributes
    protected
    Definition Classes
    Rule6Rule
  33. def |[AA >: A, BB >: B, CC >: C, DD >: D, EE >: E, FF >: F](other: Rule6[AA, BB, CC, DD, EE, FF]): Rule6[AA, BB, CC, DD, EE, FF]
  34. def ~[G](other: Rule1[G]): Rule7[A, B, C, D, E, F, G]
  35. def ~[FF >: F, RF, G](other: ReductionRule1_2[FF, RF, G]): Rule7[A, B, C, D, E, RF, G]
  36. def ~[FF >: F, RF](other: ReductionRule1[FF, RF]): Rule6[A, B, C, D, E, RF]
  37. def ~[EE >: E, FF >: F, RE, RF, G](other: ReductionRule2_3[EE, FF, RE, RF, G]): Rule7[A, B, C, D, RE, RF, G]
  38. def ~[EE >: E, FF >: F, RE, RF](other: ReductionRule2_2[EE, FF, RE, RF]): Rule6[A, B, C, D, RE, RF]
  39. def ~[EE >: E, FF >: F, RE](other: ReductionRule2[EE, FF, RE]): Rule5[A, B, C, D, RE]
  40. def ~[DD >: D, EE >: E, FF >: F, RD, RE, RF, G](other: ReductionRule3_4[DD, EE, FF, RD, RE, RF, G]): Rule7[A, B, C, RD, RE, RF, G]
  41. def ~[DD >: D, EE >: E, FF >: F, RD, RE, RF](other: ReductionRule3_3[DD, EE, FF, RD, RE, RF]): Rule6[A, B, C, RD, RE, RF]
  42. def ~[DD >: D, EE >: E, FF >: F, RD, RE](other: ReductionRule3_2[DD, EE, FF, RD, RE]): Rule5[A, B, C, RD, RE]
  43. def ~[DD >: D, EE >: E, FF >: F, RD](other: ReductionRule3[DD, EE, FF, RD]): Rule4[A, B, C, RD]
  44. def ~[FF >: F](other: PopRule1[FF]): Rule5[A, B, C, D, E]
  45. def ~[EE >: E, FF >: F](other: PopRule2[EE, FF]): Rule4[A, B, C, D]
  46. def ~[DD >: D, EE >: E, FF >: F](other: PopRule3[DD, EE, FF]): Rule3[A, B, C]
  47. def ~(other: Rule0): Rule6.this.type

    Connects two rules into a rule a sequence.

    Connects two rules into a rule a sequence.

    Definition Classes
    Rule
  48. def ~%(f: (String) => Unit): Rule6.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
  49. def ~:%(f: (Char) => Unit): Rule6.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
  50. def ~:>[R](f: (Char) => R): Rule7[A, B, C, D, E, F, R]
  51. def ~:?(f: (Char) => Boolean): Rule6.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
  52. def ~>[R](f: (String) => R): Rule7[A, B, C, D, E, F, R]
  53. def ~>>[R](f: (IndexRange) => R): Rule7[A, B, C, D, E, F, R]
  54. def ~?(f: (String) => Boolean): Rule6.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
  55. def ~~%[Z](f: (Z, A, B, C, D, E, F) => Unit): PopRule1[Z]
  56. def ~~%(f: (A, B, C, D, E, F) => Unit): Rule0
  57. def ~~%(f: (B, C, D, E, F) => Unit): Rule1[A]
  58. def ~~%(f: (C, D, E, F) => Unit): Rule2[A, B]
  59. def ~~%(f: (D, E, F) => Unit): Rule3[A, B, C]
  60. def ~~%(f: (E, F) => Unit): Rule4[A, B, C, D]
  61. def ~~%(f: (F) => Unit): Rule5[A, B, C, D, E]
  62. def ~~>[Z, R](f: (Z, A, B, C, D, E, F) => R): ReductionRule1[Z, R]
  63. def ~~>[R](f: (A, B, C, D, E, F) => R): Rule1[R]
  64. def ~~>[R](f: (B, C, D, E, F) => R): Rule2[A, R]
  65. def ~~>[R](f: (C, D, E, F) => R): Rule3[A, B, R]
  66. def ~~>[R](f: (D, E, F) => R): Rule4[A, B, C, R]
  67. def ~~>[R](f: (E, F) => R): Rule5[A, B, C, D, R]
  68. def ~~>[R](f: (E) => R): Rule6[A, B, C, D, E, R]
  69. def ~~?[Z](f: (Z, A, B, C, D, E, F) => Boolean): PopRule1[Z]
  70. def ~~?(f: (A, B, C, D, E, F) => Boolean): Rule0
  71. def ~~?(f: (B, C, D, E, F) => Boolean): Rule1[A]
  72. def ~~?(f: (C, D, E, F) => Boolean): Rule2[A, B]
  73. def ~~?(f: (D, E, F) => Boolean): Rule3[A, B, C]
  74. def ~~?(f: (E, F) => Boolean): Rule4[A, B, C, D]
  75. def ~~?(f: (F) => Boolean): Rule5[A, B, C, D, E]
  76. def ~~~%(f: (A, B, C, D, E, F) => Unit): Rule6[A, B, C, D, E, F]
  77. def ~~~%(f: (B, C, D, E, F) => Unit): Rule6[A, B, C, D, E, F]
  78. def ~~~%(f: (C, D, E, F) => Unit): Rule6[A, B, C, D, E, F]
  79. def ~~~%(f: (D, E, F) => Unit): Rule6[A, B, C, D, E, F]
  80. def ~~~%(f: (E, F) => Unit): Rule6[A, B, C, D, E, F]
  81. def ~~~%(f: (F) => Unit): Rule6[A, B, C, D, E, F]
  82. def ~~~>[R](f: (A, B, C, D, E, F) => R): Rule7[A, B, C, D, E, F, R]
  83. def ~~~>[R](f: (B, C, D, E, F) => R): Rule7[A, B, C, D, E, F, R]
  84. def ~~~>[R](f: (C, D, E, F) => R): Rule7[A, B, C, D, E, F, R]
  85. def ~~~>[R](f: (D, E, F) => R): Rule7[A, B, C, D, E, F, R]
  86. def ~~~>[R](f: (E, F) => R): Rule7[A, B, C, D, E, F, R]
  87. def ~~~>[R](f: (F) => R): Rule7[A, B, C, D, E, F, R]
  88. def ~~~?(f: (A, B, C, D, E, F) => Boolean): Rule6[A, B, C, D, E, F]
  89. def ~~~?(f: (B, C, D, E, F) => Boolean): Rule6[A, B, C, D, E, F]
  90. def ~~~?(f: (C, D, E, F) => Boolean): Rule6[A, B, C, D, E, F]
  91. def ~~~?(f: (D, E, F) => Boolean): Rule6[A, B, C, D, E, F]
  92. def ~~~?(f: (E, F) => Boolean): Rule6[A, B, C, D, E, F]
  93. def ~~~?(f: (F) => Boolean): Rule6[A, B, C, D, E, F]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from PushRule

Inherited from Rule

Inherited from AnyRef

Inherited from Any

Ungrouped