com.codecommit.gll.Parsers

Parser

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 any2stringadd
  2. by any2stringfmt
  3. by any2ArrowAssoc
  4. by any2Ensuring
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

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

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

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

    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]

  5. abstract val terminal: Boolean

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

  5. def *(): Parser[List[R]]

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

  7. def +(): Parser[List[R]]

  8. def +?: Parser[Option[List[R]]]

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

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

  11. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  13. def ?(): Parser[Option[R]]

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

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

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

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

  18. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  19. def clone(): AnyRef

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

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

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

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

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

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

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

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

  28. def finalize(): Unit

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

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

  31. def formatted(fmtstr: String): String

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

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

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

    Definition Classes
    Any
  35. def isPreferred: Boolean

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

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

    Definition Classes
    AnyRef
  38. final def notify(): Unit

    Definition Classes
    AnyRef
  39. final def notifyAll(): Unit

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

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

    Definition Classes
    AnyRef
  42. def toString(): String

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

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

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

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

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

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

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

Shadowed Implicit Value Members

  1. def +(other: String): String

    Implicit information
    This member is added by an implicit conversion from Parser[R] to StringAdd 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: StringAdd).+(other)
    Definition Classes
    StringAdd
  2. val self: Any

    Implicit information
    This member is added by an implicit conversion from Parser[R] to StringAdd performed by method any2stringadd in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (parser: StringAdd).self
    Definition Classes
    StringAdd
  3. val self: Any

    Implicit information
    This member is added by an implicit conversion from Parser[R] to StringFormat performed by method any2stringfmt in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (parser: StringFormat).self
    Definition Classes
    StringFormat

Deprecated Value Members

  1. def x: Parser[R]

    Implicit information
    This member is added by an implicit conversion from Parser[R] to ArrowAssoc[Parser[R]] performed by method any2ArrowAssoc in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (parser: ArrowAssoc[Parser[R]]).x
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use leftOfArrow instead

  2. def x: Parser[R]

    Implicit information
    This member is added by an implicit conversion from Parser[R] to Ensuring[Parser[R]] performed by method any2Ensuring in scala.Predef.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (parser: Ensuring[Parser[R]]).x
    Definition Classes
    Ensuring
    Annotations
    @deprecated
    Deprecated

    (Since version 2.10.0) Use resultOfEnsuring instead

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

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped