Trait/Object

jaskell.parsec

Parsec

Related Docs: object Parsec | package parsec

Permalink

trait Parsec[E, +T] extends AnyRef

trait of Parsec parsers.

Version

1.0.0

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

Abstract Value Members

  1. abstract def apply(s: State[E]): Try[T]

    Permalink

Concrete Value Members

  1. def !(s: State[E]): T

    Permalink
  2. final def !=(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def *>[B](mb: Parsec[E, B]): Parsec[E, B]

    Permalink
  5. def <*[_](mb: Parsec[E, _]): Parsec[E, T]

    Permalink
  6. def <*>[B](f: (T) ⇒ B): Parsec[E, B]

    Permalink
  7. def <:>[B](f: (T) ⇒ B): Parsec[E, B]

    Permalink
  8. def <?>[U >: T](message: String): Parsec[E, U]

    Permalink
  9. def <|>[U >: T](parsec: Parsec[E, U]): Parsec[E, U]

    Permalink
  10. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def >>[B](m: Parsec[E, B]): Parsec[E, B]

    Permalink
  12. def >>=[B](f: (T) ⇒ Parsec[E, B]): Parsec[E, B]

    Permalink
  13. def ?(s: Seq[E]): Try[T]

    Permalink
  14. def ?(s: State[E]): Try[T]

    Permalink
  15. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  16. def ask(s: Seq[E]): Try[T]

    Permalink
  17. def ask(s: State[E]): Try[T]

    Permalink
  18. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @throws( ... )
  19. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  21. def flatMap[B](f: (T) ⇒ Parsec[E, B]): Parsec[E, B]

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

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  23. def hashCode(): scala.Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate()
  24. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  25. def liftA2[B, C](f: (T, B) ⇒ C): (Parsec[E, B]) ⇒ Parsec[E, C]

    Permalink
  26. def map[B](f: (T) ⇒ B): Parsec[E, B]

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate()
  30. def option(s: State[E]): Option[T]

    Permalink
  31. def parse(s: State[E]): T

    Permalink
  32. val self: Parsec[E, T]

    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(arg0: Long, arg1: scala.Int): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped