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

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( ... ) @native() @HotSpotIntrinsicCandidate()
  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: Any): Boolean
    Definition Classes
    AnyRef → Any
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  18. val hexdig: Parser[Char]

    hexadecimal digit, case insensitive

  19. val htab: Parser[Unit]

    horizontal tab

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

    linefeed

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

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

    8 bits of data

  27. val sp: Parser[Unit]

    space

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

    visible (printing) characters

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

    white space (space or horizontal tab)

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated

Inherited from AnyRef

Inherited from Any

Ungrouped