Trait

akka.parboiled2

RuleDSLBasics

Related Doc: package parboiled2

Permalink

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

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    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)

    Permalink
    Implicit information
    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

    Permalink
    Definition Classes
    AnyRef → Any
  6. def ANY: Rule0

    Permalink

    Matches any character except EOI.

    Matches any character except EOI.

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

    Permalink

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

  8. def MATCH: Rule0

    Permalink

    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]

    Permalink

    A generic Rule that always fails.

  10. def MISMATCH0: Rule0

    Permalink

    A Rule0 that always fails.

  11. def anyOf(chars: String): Rule0

    Permalink

    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

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

    Permalink

    Matches the given single character.

    Matches the given single character.

    Annotations
    @compileTimeOnly( ... )
  14. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def ensuring(cond: (RuleDSLBasics) ⇒ Boolean, msg: ⇒ Any): RuleDSLBasics

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

    Permalink
    Implicit information
    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

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def fail(expected: String): Rule0

    Permalink

    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]

    Permalink

    Fully generic variant of fail.

  23. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    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[_]

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

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

    Permalink

    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

    Permalink

    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

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

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

    Permalink

    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

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

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

    Permalink

    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

    Permalink

    Matches the given string of characters.

    Matches the given string of characters.

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

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

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

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

    Permalink

    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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. def [B](y: B): (RuleDSLBasics, B)

    Permalink
    Implicit information
    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