Packages

t

atto.parser

Combinator0

trait Combinator0 extends AnyRef

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

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def advance(n: Int): Parser[Unit]
  5. def andThen[A, B](m: Parser[A], b: ⇒ Parser[B]): Parser[(A, B)]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def attempt[T](p: Parser[T]): Parser[T]

    Attoparsec try, for compatibility reasons.

    Attoparsec try, for compatibility reasons. This is actually a no-op since atto parsers always rewind in case of failure.

  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def delay[A](p: ⇒ Parser[A]): Parser[A]

    Construct the given parser lazily; useful when defining recursive parsers.

  10. def demandInput: Parser[Unit]
  11. def discardLeft[A, B](m: Parser[A], b: ⇒ Parser[B]): Parser[B]
  12. def discardRight[A, B](m: Parser[A], b: ⇒ Parser[B]): Parser[A]
  13. def either[A, B](m: Parser[A], b: ⇒ Parser[B]): Parser[Either[A, B]]
  14. def endOfChunk: Parser[Boolean]
  15. val endOfInput: Parser[Unit]

    Parser that matches end of input.

  16. def ensure(n: Int): Parser[String]
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  19. def err[A](what: String): Parser[A]

    Parser that consumes no data and fails with the specified error message.

  20. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. val get: Parser[String]

    Parser that produces the remaining input (but does not consume it).

  22. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. def modifyName[A](m: Parser[A], f: (String) ⇒ String): Parser[A]
  26. def named[A](m: Parser[A], s: ⇒ String): Parser[A]
  27. def namedOpaque[A](m: Parser[A], s: ⇒ String): Parser[A]
  28. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  29. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  31. def ok[A](a: A): Parser[A]

    Parser that consumes no data and produces the specified value.

    Parser that consumes no data and produces the specified value.

    Annotations
    @SuppressWarnings()
  32. def orElse[A, B >: A](m: Parser[A], b: ⇒ Parser[B]): Parser[B]
  33. val pos: Parser[Int]
  34. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    AnyRef → Any
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  39. val wantInput: Parser[Boolean]

Inherited from AnyRef

Inherited from Any

Ungrouped