Packages

o

cats.parse

Rfc5234

object Rfc5234

Parsers for the common rules of RFC5234. These rules are referenced by several RFCs.

Source
Rfc5234.scala
See also

https://tools.ietf.org/html/rfc5234

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Rfc5234
  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. val alpha: Parser[Char]

    A-Z and a-z, without diacritics

  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val bit: Parser[Char]

    0 or 1

  7. val char: Parser[Char]

    any 7-bit US-ASCII character, excluding NUL

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. val cr: Parser[Unit]

    carriage return

  10. val crlf: Parser[Unit]

    Internet standard newline

  11. val ctl: Parser[Char]

    controls

  12. val digit: Parser[Char]

    0 to 9

  13. val dquote: Parser[Unit]

    double quote (")

  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  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. val hexdig: Parser[Char]

    hexadecimal digit, case insensitive

  20. val htab: Parser[Unit]

    horizontal tab

  21. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  22. val lf: Parser[Unit]

    linefeed

  23. val lwsp: Parser0[Unit]

    linear white space.

    linear white space.

    Use of this rule permits lines containing only white space that are no longer legal in mail headers and have caused interoperability problems in other contexts.

    Do not use when defining mail headers and use with caution in other contexts.

  24. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  27. val octet: Parser[Char]

    8 bits of data

  28. val sp: Parser[Unit]

    space

  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. val vchar: Parser[Char]

    visible (printing) characters

  32. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  34. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  35. val wsp: Parser[Unit]

    white space (space or horizontal tab)

Inherited from AnyRef

Inherited from Any

Ungrouped