Packages

o

atto.parser

character

object character extends Character

Linear Supertypes
Character, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. character
  2. Character
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type CharRange = NumericRange[Char]
    Definition Classes
    Character

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. lazy val anyChar: Parser[Char]

    Parser that matches any character.

    Parser that matches any character.

    Definition Classes
    Character
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def binaryDigit: Parser[Char]

    Binary digit, 0 or 1

    Binary digit, 0 or 1

    Definition Classes
    Character
  7. def char(c: Char): Parser[Char]

    Parser that matches and returns only c.

    Parser that matches and returns only c.

    Definition Classes
    Character
  8. def charRange(rs: CharRange*): Parser[Char]
    Definition Classes
    Character
  9. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.CloneNotSupportedException])
  10. def decimalDigit: Parser[Char]

    Decimal digit, 0-9.

    Decimal digit, 0-9.

    Definition Classes
    Character
  11. def digit: Parser[Char]

    Decimal digit, 0-9.

    Decimal digit, 0-9.

    Definition Classes
    Character
  12. def elem(p: (Char) ⇒ Boolean, what: ⇒ String = "elem(...)"): Parser[Char]

    Parser that returns a Char if it satisfies predicate p.

    Parser that returns a Char if it satisfies predicate p.

    Definition Classes
    Character
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. def hexDigit: Parser[Char]

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

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

    Definition Classes
    Character
  19. def horizontalWhitespace: Parser[Char]

    Whitespace that is not a line break

    Whitespace that is not a line break

    Definition Classes
    Character
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. def letter: Parser[Char]
    Definition Classes
    Character
  22. def letterOrDigit: Parser[Char]
    Definition Classes
    Character
  23. def lower: Parser[Char]
    Definition Classes
    Character
  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def noneOf(s: String): Parser[Char]

    Character is not in the given String

    Character is not in the given String

    Definition Classes
    Character
  26. def notChar(c: Char): Parser[Char]

    Parser that matches any character other than c.

    Parser that matches any character other than c.

    Definition Classes
    Character
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. def octalDigit: Parser[Char]

    Octal digit, 0-7

    Octal digit, 0-7

    Definition Classes
    Character
  30. def oneOf(s: String): Parser[Char]

    Character is in the given String

    Character is in the given String

    Definition Classes
    Character
  31. def optElem[A](p: (Char) ⇒ Option[A]): Parser[A]

    elem + map in a single operation.

    elem + map in a single operation.

    Definition Classes
    Character
  32. def satisfy(p: (Char) ⇒ Boolean): Parser[Char]

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

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

    Definition Classes
    Character
  33. def skip(p: (Char) ⇒ Boolean): Parser[Unit]

    Parser that skips a Char if it satisfies predicate p.

    Parser that skips a Char if it satisfies predicate p.

    Definition Classes
    Character
  34. def spaceChar: Parser[Char]
    Definition Classes
    Character
  35. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  36. def toString(): String
    Definition Classes
    AnyRef → Any
  37. def upper: Parser[Char]
    Definition Classes
    Character
  38. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  39. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  40. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws(classOf[java.lang.InterruptedException])
  41. def whitespace: Parser[Char]

    Horizontal or vertical whitespace character

    Horizontal or vertical whitespace character

    Definition Classes
    Character

Inherited from Character

Inherited from AnyRef

Inherited from Any

Ungrouped