Object

ceedubs.irrec.parse

Parser

Related Doc: package parse

Permalink

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. All

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def base[_](implicit arg0: P[Any]): P[RegexC[Unit]]

    Permalink
  6. def charClass[_](implicit arg0: P[Any]): P[MatchSet[Char]]

    Permalink

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

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

    Permalink
  8. def charClassStandardMatchChar[_](implicit arg0: P[Any]): P[Char]

    Permalink

    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]]

    Permalink
  10. def charClassUnion[_](implicit arg0: P[Any]): P[MatchSet[Char]]

    Permalink
  11. def charOrRange[_](implicit arg0: P[Any]): P[MatchSet[Char]]

    Permalink
  12. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  13. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. def factor[_](implicit arg0: P[Any]): P[RegexC[Unit]]

    Permalink
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  20. def matchCharRange[_](implicit arg0: P[Any]): P[Range[Char]]

    Permalink

    Character range like a-z.

  21. def matchLitCharClassChar[_](implicit arg0: P[Any]): P[Literal[Char]]

    Permalink
  22. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  25. def parseRegex(regex: String): Either[String, RegexC[String]]

    Permalink
  26. def posInt[_](implicit arg0: P[Any]): P[Int]

    Permalink

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

  27. def positiveCharClassContent[_](implicit arg0: P[Any]): P[MatchSet[Char]]

    Permalink
  28. def positivePOSIXCharClass[_](implicit arg0: P[Any]): P[MatchSet[Char]]

    Permalink
  29. def quantifier[_](implicit arg0: P[Any]): P[Quantifier]

    Permalink

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

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

    Permalink

    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]]

    Permalink

    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]]

    Permalink

    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]

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

    Permalink

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

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

    Permalink

    Standard characters to match like a or %.

  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  37. def term[_](implicit arg0: P[Any]): P[RegexC[Unit]]

    Permalink
  38. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  39. def unicodeCodePoint[_](implicit arg0: P[Any]): P[Char]

    Permalink
  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 wildcard[_](implicit arg0: P[Any]): P[RegexC[Char]]

    Permalink

    Matches the wildcard character ..

Inherited from AnyRef

Inherited from Any

Ungrouped