Packages

object Parser

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Parser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

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. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def base[_](implicit arg0: P[Any]): P[RegexC[Unit]]
  6. def charClass[_](implicit arg0: P[Any]): P[MatchSet[Char]]

    Character classes like [acz] or [^a-cHP-W].

  7. def charClassBase[_](implicit arg0: P[Any]): P[MatchSet[Char]]
  8. def charClassStandardMatchChar[_](implicit arg0: P[Any]): P[Char]

    Standard characters to match like a or % but also characters that aren't special within character classes such as * (ex: [*+] matches on literal * and +).

  9. def charClassTerm[_](implicit arg0: P[Any]): P[MatchSet[Char]]
  10. def charClassUnion[_](implicit arg0: P[Any]): P[MatchSet[Char]]
  11. def charOrRange[_](implicit arg0: P[Any]): P[MatchSet[Char]]
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def factor[_](implicit arg0: P[Any]): P[RegexC[Unit]]
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def matchCharRange[_](implicit arg0: P[Any]): P[Range[Char]]

    Character range like a-z.

  21. def matchLitCharClassChar[_](implicit arg0: P[Any]): P[Literal[Char]]
  22. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  23. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. def parseRegex(regex: String): Either[String, RegexC[String]]
  26. def posInt[_](implicit arg0: P[Any]): P[Int]

    Positive integers within the max range of Scala's Int.

  27. def positiveCharClassContent[_](implicit arg0: P[Any]): P[MatchSet[Char]]
  28. def positivePOSIXCharClass[_](implicit arg0: P[Any]): P[MatchSet[Char]]
  29. def quantifier[_](implicit arg0: P[Any]): P[Quantifier]

    Matches repeat counts like {3} or {1,4}.

  30. def regex[_](implicit arg0: P[Any]): P[RegexC[Unit]]

    A parser for a regular expression.

    A parser for a regular expression. You probably want to use regexExpr instead, as this parser will succeed even if there are trailing characters after a valid regular expression.

  31. def regexExpr[_](implicit arg0: P[Any]): P[RegexC[String]]

    A parser for strings that are complete regular expressions, up until the end of the string.

  32. def shorthandClass[_](implicit arg0: P[Any]): P[MatchSet[Char]]

    A shorthand class such as \d or \w.

    A shorthand class such as \d or \w. This parser itself doesn't look for the \; it starts with the character after it.

  33. def singleLitCharClassChar[_](implicit arg0: P[Any]): P[Char]
  34. def specialChar[_](implicit arg0: P[Any]): P[Char]

    Matches on special characters that should be escaped like * and {.

  35. def standardMatchChar[_](implicit arg0: P[Any]): P[Char]

    Standard characters to match like a or %.

  36. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  37. def term[_](implicit arg0: P[Any]): P[RegexC[Unit]]
  38. def toString(): String
    Definition Classes
    AnyRef → Any
  39. def unicodeCodePoint[_](implicit arg0: P[Any]): P[Char]
  40. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  41. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  42. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  43. def wildcard[_](implicit arg0: P[Any]): P[RegexC[Char]]

    Matches the wildcard character ..

Inherited from AnyRef

Inherited from Any

Ungrouped