Trait

atto.parser

Combinator0

Related Doc: package parser

Permalink

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def advance(n: Int): Parser[Unit]

    Permalink
  5. def andThen[A, B](m: Parser[A], b: ⇒ Parser[B]): Parser[(A, B)]

    Permalink
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def attempt[T](p: Parser[T]): Parser[T]

    Permalink

    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

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

    Permalink

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

  10. def demandInput: Parser[Unit]

    Permalink
  11. def discardLeft[A, B](m: Parser[A], b: ⇒ Parser[B]): Parser[B]

    Permalink
  12. def discardRight[A, B](m: Parser[A], b: ⇒ Parser[B]): Parser[A]

    Permalink
  13. def either[A, B](m: Parser[A], b: ⇒ Parser[B]): Parser[\/[A, B]]

    Permalink
  14. def endOfChunk: Parser[Boolean]

    Permalink
  15. val endOfInput: Parser[Unit]

    Permalink

    Parser that matches end of input.

  16. def ensure(n: Int): Parser[String]

    Permalink
  17. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  19. def err(what: String): Parser[Nothing]

    Permalink

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

  20. def finalize(): Unit

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

    Permalink

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

  22. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  25. def modifyName[A](m: Parser[A], f: (String) ⇒ String): Parser[A]

    Permalink
  26. def named[A](m: Parser[A], s: ⇒ String): Parser[A]

    Permalink
  27. def namedOpaque[A](m: Parser[A], s: ⇒ String): Parser[A]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  31. def ok[A](a: A): Parser[A]

    Permalink

    Parser that consumes no data and produces the specified value.

  32. def orElse[A, B >: A](m: Parser[A], b: ⇒ Parser[B]): Parser[B]

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

    Permalink
    Definition Classes
    AnyRef
  34. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  38. val wantInput: Parser[Boolean]

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped