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
    @HotSpotIntrinsicCandidate() @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. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  17. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  18. val hexdig: Parser[Char]

    Permalink

    hexadecimal digit, case insensitive

  19. val htab: Parser[Unit]

    Permalink

    horizontal tab

  20. final def isInstanceOf[T0]: Boolean

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

    Permalink

    linefeed

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  25. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  26. val octet: Parser[Char]

    Permalink

    8 bits of data

  27. val sp: Parser[Unit]

    Permalink

    space

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

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

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

    Permalink

    visible (printing) characters

  31. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(): Unit

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

    Permalink

    white space (space or horizontal tab)

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped