atto.parser

Character

trait Character extends AnyRef

Parsers for various kinds of characters.

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

Type Members

  1. type CharRange = NumericRange[Char]

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. lazy val anyChar: Parser[Char]

    Parser that matches any character.

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def binaryDigit: Parser[Char]

    Binary digit, 0 or 1

  9. def char(c: Char): Parser[Char]

    Parser that matches and returns only c.

  10. def charRange(rs: CharRange*): Parser[Char]

  11. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def decimalDigit: Parser[Char]

    Decimal digit, 0-9.

  13. def digit: Parser[Char]

    Decimal digit, 0-9.

  14. def elem(p: (Char) ⇒ Boolean, what: ⇒ String = "elem(...)"): Parser[Char]

    Parser that returns a Char if it satisfies predicate p.

  15. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

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

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

    Definition Classes
    AnyRef → Any
  20. def hexDigit: Parser[Char]

    Hex digit, 0-9, A-F, a-f

  21. def horizontalWhitespace: Parser[Char]

    Whitespace that is not a line break

  22. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  23. def letter: Parser[Char]

  24. def letterOrDigit: Parser[Char]

  25. def lower: Parser[Char]

  26. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  27. def noneOf(s: String): Parser[Char]

    Character is not in the given String

  28. def notChar(c: Char): Parser[Char]

    Parser that matches any character other than c.

  29. final def notify(): Unit

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

    Definition Classes
    AnyRef
  31. def octalDigit: Parser[Char]

    Octal digit, 0-7

  32. def oneOf(s: String): Parser[Char]

    Character is in the given String

  33. def optElem[A](p: (Char) ⇒ Option[A]): Parser[A]

    elem + map in a single operation.

  34. def satisfy(p: (Char) ⇒ Boolean): Parser[Char]

    Equivalent to elem(p) but without optional label arg.

  35. def skip(p: (Char) ⇒ Boolean): Parser[Unit]

    Parser that skips a Char if it satisfies predicate p.

  36. def spaceChar: Parser[Char]

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

    Definition Classes
    AnyRef
  38. def toString(): String

    Definition Classes
    AnyRef → Any
  39. def upper: Parser[Char]

  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( ... )
  43. def whitespace: Parser[Char]

    Horizontal or vertical whitespace character

Inherited from AnyRef

Inherited from Any

Ungrouped