Object

cats.parse

Rfc5234

Related Doc: package parse

Permalink

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

    Permalink

    A-Z and a-z, without diacritics

  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. val bit: Parser[Char]

    Permalink

    0 or 1

  7. val char: Parser[Char]

    Permalink

    any 7-bit US-ASCII character, excluding NUL

  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. val cr: Parser[Unit]

    Permalink

    carriage return

  10. val crlf: Parser[Unit]

    Permalink

    Internet standard newline

  11. val ctl: Parser[Char]

    Permalink

    controls

  12. val digit: Parser[Char]

    Permalink

    0 to 9

  13. val dquote: Parser[Unit]

    Permalink

    double quote (")

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  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. val hexdig: Parser[Char]

    Permalink

    hexadecimal digit, case insensitive

  20. val htab: Parser[Unit]

    Permalink

    horizontal tab

  21. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  22. val lf: Parser[Unit]

    Permalink

    linefeed

  23. val lwsp: Parser0[Unit]

    Permalink

    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

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

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

    Permalink
    Definition Classes
    AnyRef
  27. val octet: Parser[Char]

    Permalink

    8 bits of data

  28. val sp: Parser[Unit]

    Permalink

    space

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

    Permalink
    Definition Classes
    AnyRef
  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. val vchar: Parser[Char]

    Permalink

    visible (printing) characters

  32. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. val wsp: Parser[Unit]

    Permalink

    white space (space or horizontal tab)

Inherited from AnyRef

Inherited from Any

Ungrouped