trait CompParser extends AnyRef
- Alphabetic
- By Inheritance
- CompParser
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- case class CompletionResult(results: List[List[Elem]]) extends Product with Serializable
- abstract type Elem
- case class Error(msg: String, next: Input) extends NoSuccess with Product with Serializable
- case class Failure(msg: String, next: Input) extends NoSuccess with Product with Serializable
- type Input = Reader[Elem]
- sealed abstract class NoSuccess extends ParseResult[Nothing]
- sealed abstract class ParseResult[+T] extends AnyRef
- abstract class Parser[+T] extends (Input) ⇒ ParseResult[T]
- case class Success[+T](result: T, next: Input) extends ParseResult[T] with Product with Serializable
- case class ~[+a, +b](_1: a, _2: b) extends Product with Serializable
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def Parser[T](f: (Input) ⇒ ParseResult[T], g: (Input, Boolean) ⇒ CompletionResult): Parser[T]
- def accept[U](expected: String, f: PartialFunction[Elem, U]): Parser[U]
- 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]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
- 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
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def elem(e: Elem): Parser[Elem]
- def elem(kind: String, p: (Elem) ⇒ Boolean): Parser[Elem]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def err[T](msg: String): Parser[T]
- def failure[T](msg: String): Parser[T]
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
handleSeparators(source: CharSequence, offset: Int): Int
- Attributes
- protected
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def opt[T](p: ⇒ Parser[T]): Parser[Option[T]]
- def phrase[T](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 repsep[T](p: ⇒ Parser[T], q: ⇒ Parser[Any]): Parser[List[T]]
- def success[T](v: T): Parser[T]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- object CompletionResult extends Serializable
- object NoSuccess