Trait

com.codecommit.gll.Parsers

Parser

Related Doc: package Parsers

Permalink

sealed trait Parser[+R] extends (LineStream) ⇒ Stream[Result[R]]

Self Type
Parser[R]
Linear Supertypes
(LineStream) ⇒ Stream[Result[R]], AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Parser
  2. Function1
  3. AnyRef
  4. Any
Implicitly
  1. by CollectionsHaveToParArray
  2. by any2stringadd
  3. by StringFormat
  4. by Ensuring
  5. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def apply(v1: LineStream): Stream[Result[R]]

    Permalink
    Definition Classes
    Function1
  2. abstract def chain(t: Trampoline, in: LineStream)(f: (Result[R]) ⇒ Unit): Unit

    Permalink
  3. abstract def computeFirst(seen: Set[Parser[Any]]): Option[Set[Option[Char]]]

    Permalink

    returns

    The FIRST set for this parser, or the empty set if the production goes to \epsilon.

  4. abstract def mapWithTail[R2](f: (LineStream, R) ⇒ R2): Parser[R2]

    Permalink
  5. abstract val terminal: Boolean

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def *(sep: Parser[_]): Parser[List[R]]

    Permalink
  4. def *(): Parser[List[R]]

    Permalink
  5. def +(sep: Parser[_]): Parser[List[R]]

    Permalink
  6. def +(): Parser[List[R]]

    Permalink
  7. def +?: Parser[Option[List[R]]]

    Permalink
  8. def ->[B](y: B): (Parser[R], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to ArrowAssoc[Parser[R]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  9. def <~[R2](that: Parser[R2]): Parser[R]

    Permalink
  10. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def ?(): Parser[Option[R]]

    Permalink
  12. def \(not: TerminalParser[Any]): Parser[R]

    Permalink
  13. def ^^^[R2](v: ⇒ R2): Parser[R2]

    Permalink
  14. def andThen[A](g: (Stream[Result[R]]) ⇒ A): (LineStream) ⇒ A

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  15. def apply(str: String): Stream[Result[R]]

    Permalink
  16. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  17. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. def compose[A](g: (A) ⇒ LineStream): (A) ⇒ Stream[Result[R]]

    Permalink
    Definition Classes
    Function1
    Annotations
    @unspecialized()
  19. def ensuring(cond: (Parser[R]) ⇒ Boolean, msg: ⇒ Any): Parser[R]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to Ensuring[Parser[R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  20. def ensuring(cond: (Parser[R]) ⇒ Boolean): Parser[R]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to Ensuring[Parser[R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: Boolean, msg: ⇒ Any): Parser[R]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to Ensuring[Parser[R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean): Parser[R]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to Ensuring[Parser[R]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  24. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  25. def filter(f: (R) ⇒ Boolean): Parser[R]

    Permalink
  26. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  27. lazy val first: Set[Char]

    Permalink
  28. def flatMap[R2](f1: (R) ⇒ Parser[R2]): Parser[R2]

    Permalink
  29. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to StringFormat[Parser[R]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  30. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  31. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  32. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  33. def isPreferred: Boolean

    Permalink
  34. def map[R2](f: (R) ⇒ R2): Parser[R2]

    Permalink
  35. final def ne(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef
  37. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  38. def orElse[R2 >: R](alternate: ⇒ Parser[R2]): Parser[R2]

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

    Permalink
    Definition Classes
    AnyRef
  40. def toParArray: ParArray[T]

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to CollectionsHaveToParArray[Parser[R], T] performed by method CollectionsHaveToParArray in scala.collection.parallel. This conversion will take place only if an implicit value of type (Parser[R]) ⇒ GenTraversableOnce[T] is in scope.
    Definition Classes
    CollectionsHaveToParArray
  41. def toString(): String

    Permalink
    Definition Classes
    Function1 → AnyRef → Any
  42. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  43. final def wait(arg0: Long, arg1: Int): Unit

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. def ~[R2](that: Parser[R2]): Parser[~[R, R2]]

    Permalink
  46. def ~>[R2](that: Parser[R2]): Parser[R2]

    Permalink
  47. def [B](y: B): (Parser[R], B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to ArrowAssoc[Parser[R]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Shadowed Implicit Value Members

  1. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from Parser[R] to any2stringadd[Parser[R]] performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is shadowed by one or more members in this class.
    To access this member you can use a type ascription:
    (parser: any2stringadd[Parser[R]]).+(other)
    Definition Classes
    any2stringadd

Inherited from (LineStream) ⇒ Stream[Result[R]]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion CollectionsHaveToParArray from Parser[R] to CollectionsHaveToParArray[Parser[R], T]

Inherited by implicit conversion any2stringadd from Parser[R] to any2stringadd[Parser[R]]

Inherited by implicit conversion StringFormat from Parser[R] to StringFormat[Parser[R]]

Inherited by implicit conversion Ensuring from Parser[R] to Ensuring[Parser[R]]

Inherited by implicit conversion ArrowAssoc from Parser[R] to ArrowAssoc[Parser[R]]

Ungrouped