object CacheControlParser extends Parsers
Type Members
- type Elem = Char
- case class Error extends NoSuccess with Product with Serializable
- case class Failure extends NoSuccess with Product with Serializable
- type Input = Reader[Elem]
- sealed abstract class NoSuccess extends ParseResult[Nothing]
- trait OnceParser[+T] extends Parser[T]
- sealed abstract class ParseResult[+T] extends AnyRef
- abstract class Parser[+T] extends (Input) => ParseResult[T]
- case class Success[+T] extends ParseResult[T] with Product with Serializable
- case class ~[+a, +b] extends Product with Serializable
Value Members
- final def !=(arg0: Any): Boolean
- final def ##: Int
- final def ==(arg0: Any): Boolean
- def OnceParser[T](f: (Input) => ParseResult[T]): Parser[T] with OnceParser[T]
- def Parser[T](f: (Input) => ParseResult[T]): Parser[T]
- def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
- def accept[ES](es: ES)(implicit f: (ES) => List[Elem]): Parser[List[Elem]]
- implicit def accept(e: Elem): Parser[Elem]
- def acceptIf(p: (Elem) => Boolean)(err: (Elem) => String): Parser[Elem]
- def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
- def acceptSeq[ES](es: ES)(implicit f: (ES) => Iterable[Elem]): Parser[List[Elem]]
- val any: Parser[Elem]
- def apply(in: Input): ParseResult[Seq[CacheDirective]]
- final def asInstanceOf[T0]: T0
- val badParameter: Parser[None.type]
- def badPart(p: (Char) => Boolean, msg: => String): Parser[None.type]
- val cacheDirective: Parser[CacheDirective]
- val cacheDirectives: Parser[Seq[CacheDirective]]
- def chainl1[T, U](first: => Parser[T], p: => Parser[U], q: => Parser[(T, U) => T]): Parser[T]
- def chainl1[T](p: => Parser[T], q: => Parser[(T, T) => T]): Parser[T]
- def chainr1[T, U](p: => Parser[T], q: => Parser[(T, U) => U], combine: (T, U) => U, first: U): Parser[U]
- val char: Parser[Elem]
- def charSeqToString(chars: Seq[Char]): String
- def clone(): AnyRef
- def commit[T](p: => Parser[T]): Parser[T]
- val ctl: Parser[Elem]
- def elem(e: Elem): Parser[Elem]
- def elem(kind: String, p: (Elem) => Boolean): Parser[Elem]
- val end: Parser[Unit]
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def err(msg: String): Parser[Nothing]
- def failure(msg: String): Parser[Nothing]
- final def getClass(): Class[_ <: AnyRef]
- def guard[T](p: => Parser[T]): Parser[T]
- def hashCode(): Int
- def ignoreErrors(c: Char): String
- final def isInstanceOf[T0]: Boolean
- def log[T](p: => Parser[T])(name: String): Parser[T]
- def mkList[T]: (~[T, List[T]]) => List[T]
- final def ne(arg0: AnyRef): Boolean
- def not[T](p: => Parser[T]): Parser[Unit]
- final def notify(): Unit
- final def notifyAll(): Unit
- def opt[T](p: => Parser[T]): Parser[Option[T]]
- val parameters: Parser[List[Option[CacheDirective]]]
- def phrase[T](p: Parser[T]): Parser[T]
- def positioned[T <: Positional](p: => Parser[T]): Parser[T]
- val qdtext: Parser[Elem]
- val quotedPair: Parser[Elem]
- val quotedString: Parser[String]
- def rep[T](p: => Parser[T]): Parser[List[T]]
- def rep1[T](first: => Parser[T], p0: => Parser[T]): Parser[List[T]]
- def rep1[T](p: => Parser[T]): Parser[List[T]]
- def rep1sep[T](p: => Parser[T], q: => Parser[Any]): Parser[List[T]]
- def repN[T](num: Int, p: => Parser[T]): Parser[List[T]]
- def repsep[T](p: => Parser[T], q: => Parser[Any]): Parser[List[T]]
- def seconds(n: String): Seconds
- val separatorBitSet: BitSet
- val separatorChars: String
- val separators: Parser[Elem]
- def success[T](v: T): Parser[T]
- final def synchronized[T0](arg0: => T0): T0
- val text: Parser[Elem]
- def toString(): String
- val token: Parser[String]
- def tolerant[T](p: Parser[T], bad: Parser[Option[T]]): Parser[Option[T]]
- val tolerantParameter: Parser[Option[CacheDirective]]
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
- final def wait(): Unit
- object NoSuccess
Deprecated Value Members
- def finalize(): Unit
Inherited from Parsers
Value Members
- def OnceParser[T](f: (Input) => ParseResult[T]): Parser[T] with OnceParser[T]
- def Parser[T](f: (Input) => ParseResult[T]): Parser[T]
- def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
- def accept[ES](es: ES)(implicit f: (ES) => List[Elem]): Parser[List[Elem]]
- implicit def accept(e: Elem): Parser[Elem]
- def acceptIf(p: (Elem) => Boolean)(err: (Elem) => String): Parser[Elem]
- def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
- def acceptSeq[ES](es: ES)(implicit f: (ES) => Iterable[Elem]): Parser[List[Elem]]
- def chainl1[T, U](first: => Parser[T], p: => Parser[U], q: => Parser[(T, U) => T]): Parser[T]
- def chainl1[T](p: => Parser[T], q: => Parser[(T, T) => T]): Parser[T]
- def chainr1[T, U](p: => Parser[T], q: => Parser[(T, U) => U], combine: (T, U) => U, first: U): Parser[U]
- def commit[T](p: => Parser[T]): Parser[T]
- def elem(e: Elem): Parser[Elem]
- def elem(kind: String, p: (Elem) => Boolean): Parser[Elem]
- def err(msg: String): Parser[Nothing]
- def failure(msg: String): Parser[Nothing]
- def guard[T](p: => Parser[T]): Parser[T]
- def log[T](p: => Parser[T])(name: String): Parser[T]
- def mkList[T]: (~[T, List[T]]) => List[T]
- def not[T](p: => Parser[T]): Parser[Unit]
- def opt[T](p: => Parser[T]): Parser[Option[T]]
- def phrase[T](p: Parser[T]): Parser[T]
- def positioned[T <: Positional](p: => Parser[T]): Parser[T]
- def rep[T](p: => Parser[T]): Parser[List[T]]
- def rep1[T](first: => Parser[T], p0: => Parser[T]): Parser[List[T]]
- def rep1[T](p: => Parser[T]): Parser[List[T]]
- def rep1sep[T](p: => Parser[T], q: => Parser[Any]): Parser[List[T]]
- def repN[T](num: Int, p: => Parser[T]): Parser[List[T]]
- def repsep[T](p: => Parser[T], q: => Parser[Any]): Parser[List[T]]
- def success[T](v: T): Parser[T]
Inherited from AnyRef
Value Members
- final def !=(arg0: Any): Boolean
- final def ##: Int
- final def ==(arg0: Any): Boolean
- def clone(): AnyRef
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- final def getClass(): Class[_ <: AnyRef]
- def hashCode(): Int
- final def ne(arg0: AnyRef): Boolean
- final def notify(): Unit
- final def notifyAll(): Unit
- final def synchronized[T0](arg0: => T0): T0
- def toString(): String
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
- final def wait(): Unit
- def finalize(): Unit
Inherited from Any
Value Members
- final def asInstanceOf[T0]: T0
- final def isInstanceOf[T0]: Boolean
Ungrouped
- type Elem = Char
- case class Error extends NoSuccess with Product with Serializable
- case class Failure extends NoSuccess with Product with Serializable
- type Input = Reader[Elem]
- sealed abstract class NoSuccess extends ParseResult[Nothing]
- trait OnceParser[+T] extends Parser[T]
- sealed abstract class ParseResult[+T] extends AnyRef
- abstract class Parser[+T] extends (Input) => ParseResult[T]
- case class Success[+T] extends ParseResult[T] with Product with Serializable
- case class ~[+a, +b] extends Product with Serializable
- final def !=(arg0: Any): Boolean
- final def ##: Int
- final def ==(arg0: Any): Boolean
- def OnceParser[T](f: (Input) => ParseResult[T]): Parser[T] with OnceParser[T]
- def Parser[T](f: (Input) => ParseResult[T]): Parser[T]
- def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
- def accept[ES](es: ES)(implicit f: (ES) => List[Elem]): Parser[List[Elem]]
- implicit def accept(e: Elem): Parser[Elem]
- def acceptIf(p: (Elem) => Boolean)(err: (Elem) => String): Parser[Elem]
- def acceptMatch[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
- def acceptSeq[ES](es: ES)(implicit f: (ES) => Iterable[Elem]): Parser[List[Elem]]
- val any: Parser[Elem]
- def apply(in: Input): ParseResult[Seq[CacheDirective]]
- final def asInstanceOf[T0]: T0
- val badParameter: Parser[None.type]
- def badPart(p: (Char) => Boolean, msg: => String): Parser[None.type]
- val cacheDirective: Parser[CacheDirective]
- val cacheDirectives: Parser[Seq[CacheDirective]]
- def chainl1[T, U](first: => Parser[T], p: => Parser[U], q: => Parser[(T, U) => T]): Parser[T]
- def chainl1[T](p: => Parser[T], q: => Parser[(T, T) => T]): Parser[T]
- def chainr1[T, U](p: => Parser[T], q: => Parser[(T, U) => U], combine: (T, U) => U, first: U): Parser[U]
- val char: Parser[Elem]
- def charSeqToString(chars: Seq[Char]): String
- def clone(): AnyRef
- def commit[T](p: => Parser[T]): Parser[T]
- val ctl: Parser[Elem]
- def elem(e: Elem): Parser[Elem]
- def elem(kind: String, p: (Elem) => Boolean): Parser[Elem]
- val end: Parser[Unit]
- final def eq(arg0: AnyRef): Boolean
- def equals(arg0: AnyRef): Boolean
- def err(msg: String): Parser[Nothing]
- def failure(msg: String): Parser[Nothing]
- final def getClass(): Class[_ <: AnyRef]
- def guard[T](p: => Parser[T]): Parser[T]
- def hashCode(): Int
- def ignoreErrors(c: Char): String
- final def isInstanceOf[T0]: Boolean
- def log[T](p: => Parser[T])(name: String): Parser[T]
- def mkList[T]: (~[T, List[T]]) => List[T]
- final def ne(arg0: AnyRef): Boolean
- def not[T](p: => Parser[T]): Parser[Unit]
- final def notify(): Unit
- final def notifyAll(): Unit
- def opt[T](p: => Parser[T]): Parser[Option[T]]
- val parameters: Parser[List[Option[CacheDirective]]]
- def phrase[T](p: Parser[T]): Parser[T]
- def positioned[T <: Positional](p: => Parser[T]): Parser[T]
- val qdtext: Parser[Elem]
- val quotedPair: Parser[Elem]
- val quotedString: Parser[String]
- def rep[T](p: => Parser[T]): Parser[List[T]]
- def rep1[T](first: => Parser[T], p0: => Parser[T]): Parser[List[T]]
- def rep1[T](p: => Parser[T]): Parser[List[T]]
- def rep1sep[T](p: => Parser[T], q: => Parser[Any]): Parser[List[T]]
- def repN[T](num: Int, p: => Parser[T]): Parser[List[T]]
- def repsep[T](p: => Parser[T], q: => Parser[Any]): Parser[List[T]]
- def seconds(n: String): Seconds
- val separatorBitSet: BitSet
- val separatorChars: String
- val separators: Parser[Elem]
- def success[T](v: T): Parser[T]
- final def synchronized[T0](arg0: => T0): T0
- val text: Parser[Elem]
- def toString(): String
- val token: Parser[String]
- def tolerant[T](p: Parser[T], bad: Parser[Option[T]]): Parser[Option[T]]
- val tolerantParameter: Parser[Option[CacheDirective]]
- final def wait(arg0: Long, arg1: Int): Unit
- final def wait(arg0: Long): Unit
- final def wait(): Unit
- object NoSuccess
- def finalize(): Unit