t

akka.parboiled2

RuleDSLBasics

trait RuleDSLBasics extends AnyRef

Source
RuleDSLBasics.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RuleDSLBasics
  2. AnyRef
  3. 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. 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. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from RuleDSLBasics to any2stringadd[RuleDSLBasics] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (RuleDSLBasics, B)
    Implicit
    This member is added by an implicit conversion from RuleDSLBasics to ArrowAssoc[RuleDSLBasics] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def ANY: Rule0

    Matches any character except EOI.

    Matches any character except EOI.

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

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

  8. def MATCH: Rule0

    Matches no character (i.e.

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

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

    A generic Rule that always fails.

  10. def MISMATCH0: Rule0

    A Rule0 that always fails.

  11. def anyOf(chars: String): Rule0

    Matches any single one of the given characters.

    Matches any single one of the given characters.

    Note: This helper has O(n) runtime with n being the length of the given string. If your string consists only of 7-bit ASCII chars using a pre-allocated CharPredicate will be more efficient.

    Annotations
    @compileTimeOnly( ... )
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. implicit def ch(c: Char): Rule0

    Matches the given single character.

    Matches the given single character.

    Annotations
    @compileTimeOnly( ... )
  14. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  15. def ensuring(cond: (RuleDSLBasics) ⇒ Boolean, msg: ⇒ Any): RuleDSLBasics
    Implicit
    This member is added by an implicit conversion from RuleDSLBasics to Ensuring[RuleDSLBasics] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (RuleDSLBasics) ⇒ Boolean): RuleDSLBasics
    Implicit
    This member is added by an implicit conversion from RuleDSLBasics to Ensuring[RuleDSLBasics] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): RuleDSLBasics
    Implicit
    This member is added by an implicit conversion from RuleDSLBasics to Ensuring[RuleDSLBasics] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): RuleDSLBasics
    Implicit
    This member is added by an implicit conversion from RuleDSLBasics to Ensuring[RuleDSLBasics] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  21. def fail(expected: String): Rule0

    A rule that always fails and causes the parser to immediately terminate the parsing run.

    A rule that always fails and causes the parser to immediately terminate the parsing run. The resulting parse error only has a single trace with a single frame which holds the given error message.

  22. def failX[I <: HList, O <: HList](expected: String): Rule[I, O]

    Fully generic variant of fail.

  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 RuleDSLBasics to StringFormat[RuleDSLBasics] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  25. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  26. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  27. 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( ... )
  28. 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( ... )
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  31. 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.

    Note: This helper has O(n) runtime with n being the length of the given string. If your string consists only of 7-bit ASCII chars using a pre-allocated CharPredicate will be more efficient.

    Annotations
    @compileTimeOnly( ... )
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. 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( ... )
  35. implicit def str(s: String): Rule0

    Matches the given string of characters.

    Matches the given string of characters.

    Annotations
    @compileTimeOnly( ... )
  36. implicit def str2CharRangeSupport(s: String): CharRangeSupport
    Annotations
    @compileTimeOnly( ... )
  37. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. 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( ... )
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  43. def [B](y: B): (RuleDSLBasics, B)
    Implicit
    This member is added by an implicit conversion from RuleDSLBasics to ArrowAssoc[RuleDSLBasics] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped