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
Learn more about member selection
Visibility
  1. Public
  2. All

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. final def ==(arg0: AnyRef): Boolean

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

    Definition Classes
    Any
  6. def advance(n: Int): Parser[Unit]

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

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. 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.

  10. def clone(): AnyRef

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

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

  12. def demandInput: Parser[Unit]

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

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

  15. def either[E[_, _], A, B](m: Parser[A], b: ⇒ Parser[B])(implicit E: Eithery[E]): Parser[E[A, B]]

  16. def endOfChunk: Parser[Boolean]

  17. val endOfInput: Parser[Unit]

    Parser that matches end of input.

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

  19. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  21. def err[A](what: String): Parser[A]

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

  22. def finalize(): Unit

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

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

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

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

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

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

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

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

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

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

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

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

    Parser that consumes no data and produces the specified value.

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

  35. val pos: Parser[Int]

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

    Definition Classes
    AnyRef
  37. def toString(): String

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

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped