Trait

atto.syntax

ParserOps

Related Doc: package syntax

Permalink

trait ParserOps[A] extends AnyRef

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

Abstract Value Members

  1. abstract val self: Parser[A]

    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 -|[B](f: (A) ⇒ B): Parser[B]

    Permalink

    a -| f is shorthand for a map f

  4. def <~[B](n: ⇒ Parser[B]): Parser[A]

    Permalink

    a <~ b is shorthand for discardRight(a, b)

  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. def >|[B](b: ⇒ B): Parser[B]

    Permalink

    a >| b is shorthand for a map (_ => b)

  7. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  8. def attempt: Parser[A]

    Permalink
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def collect[B](pf: PartialFunction[A, B]): Parser[B]

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  14. final def getClass(): Class[_]

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

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

    Permalink
    Definition Classes
    Any
  17. def many: Parser[List[A]]

    Permalink
  18. def many1: Parser[NonEmptyList[A]]

    Permalink
  19. def manyN(n: Int): Parser[List[A]]

    Permalink
  20. def named(s: ⇒ String): Parser[A]

    Permalink
  21. def namedOpaque(s: ⇒ String): Parser[A]

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

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

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

    Permalink
    Definition Classes
    AnyRef
  25. def parens: Parser[A]

    Permalink
  26. def parse(b: String): ParseResult[A]

    Permalink
  27. def parseOnly(b: String): ParseResult[A]

    Permalink
  28. def sepBy[B](s: Parser[B]): Parser[List[A]]

    Permalink
  29. def sepBy1[B](s: Parser[B]): Parser[NonEmptyList[A]]

    Permalink
  30. def skipMany: Parser[Unit]

    Permalink
  31. def skipMany1: Parser[Unit]

    Permalink
  32. def skipManyN(n: Int): Parser[Unit]

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  35. def token: Parser[A]

    Permalink
  36. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. def |[B >: A](n: ⇒ Parser[B]): Parser[B]

    Permalink

    a | b is shorthand for orElse(a, b)

  40. def ||[B](n: ⇒ Parser[B]): Parser[Either[A, B]]

    Permalink

    a || b is shorthand for either(a, b)

  41. def ~[B](n: ⇒ Parser[B]): Parser[(A, B)]

    Permalink

    a ~ b is shorthand for andThen(a, b)

  42. def ~>[B](n: ⇒ Parser[B]): Parser[B]

    Permalink

    a ~> b is shorthand for discardLeft(a, b)

Inherited from AnyRef

Inherited from Any

Ungrouped