trait Parser[+T] extends AnyRef

A String parser that provides semi-automatic tab completion. A successful parse results in a value of type T. The methods in this trait are what must be implemented to define a new Parser implementation, but are not typically useful for common usage. Instead, most useful methods for combining smaller parsers into larger parsers are implicitly added by the RichParser type.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Parser
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def completions(level: Int): Completions
  2. abstract def derive(i: Char): Parser[T]
  3. abstract def failure: Option[Failure]
  4. abstract def ifValid[S](p: ⇒ Parser[S]): Parser[S]
  5. abstract def result: Option[T]
  6. abstract def resultEmpty: Parser.Result[T]
  7. abstract def valid: Boolean

Concrete Value Members

  1. def isTokenStart: Boolean