org.parboiled2

RuleDSLBasics

trait RuleDSLBasics extends AnyRef

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. RuleDSLBasics
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait CharRangeSupport extends AnyRef

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 ANY: Rule0

    Matches any character except EOI.

    Matches any character except EOI.

    Annotations
    @compileTimeOnly( ... )
  5. def EOI: Char

    Matches the EOI (end-of-input) character.

  6. def MATCH: Rule0

    Matches no character (i.

    Matches no character (i.e. doesn't cause the parser to make any progress) but succeeds always (as a rule).

  7. def MISMATCH[I <: HList, O <: HList]: Rule[I, O]

    A rule that always fails.

  8. def MISMATCH0: Rule0

  9. def anyOf(chars: String): Rule0

    Matches any single one of the given characters.

    Matches any single one of the given characters.

    Annotations
    @compileTimeOnly( ... )
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. implicit def ch(c: Char): Rule0

    Matches the given single character.

    Matches the given single character.

    Annotations
    @compileTimeOnly( ... )
  12. implicit def charAndValue[T](t: (Char, T))(implicit h: HListable[T]): RuleN[Out]

    Matches a character and pushes the associated value.

    Matches a character and pushes the associated value.

    Annotations
    @compileTimeOnly( ... )
  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( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

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

    Definition Classes
    AnyRef → Any
  19. def ignoreCase(s: String): Rule0

    Matches the given string of characters case insensitively.

    Matches the given string of characters case insensitively. Note: the given string must be specified in all lower-case! This requirement is currently NOT enforced!

    Annotations
    @compileTimeOnly( ... )
  20. def ignoreCase(c: Char): Rule0

    Matches the given single character case insensitively.

    Matches the given single character case insensitively. Note: the given character must be specified in lower-case! This requirement is currently NOT enforced!

    Annotations
    @compileTimeOnly( ... )
  21. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. def noneOf(chars: String): Rule0

    Matches any single character except the ones in the given string and except EOI.

    Matches any single character except the ones in the given string and except EOI.

    Annotations
    @compileTimeOnly( ... )
  24. final def notify(): Unit

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

    Definition Classes
    AnyRef
  26. implicit def predicate(p: CharPredicate): Rule0

    Matches any (single) character matched by the given CharPredicate.

    Matches any (single) character matched by the given CharPredicate.

    Annotations
    @compileTimeOnly( ... )
  27. implicit def str(s: String): Rule0

    Matches the given string of characters.

    Matches the given string of characters.

    Annotations
    @compileTimeOnly( ... )
  28. implicit def str2CharRangeSupport(s: String): CharRangeSupport

    Annotations
    @compileTimeOnly( ... )
  29. implicit def stringAndValue[T](t: (String, T))(implicit h: HListable[T]): RuleN[Out]

    Matches a string and pushes the associated value.

    Matches a string and pushes the associated value.

    Annotations
    @compileTimeOnly( ... )
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  31. def toString(): String

    Definition Classes
    AnyRef → Any
  32. implicit def valueMap[T](m: Map[String, T])(implicit h: HListable[T]): RuleN[Out]

    Matches any of the given maps keys and pushes the respective value upon a successful match.

    Matches any of the given maps keys and pushes the respective value upon a successful match.

    Annotations
    @compileTimeOnly( ... )
  33. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped