Binder

jaskell.parsec.Binder
class Binder[A, B, C](val parsec: Parsec[A, B], val f: B => Parsec[A, C]) extends Parsec[A, C]

Attributes

Graph
Supertypes
trait Parsec[A, C]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def apply(state: State[A]): Try[C]

Inherited methods

def !(state: State[A]): B

Attributes

Inherited from:
Parsec
def <?>[C >: C](message: String): Parsec[A, C]

Attributes

Inherited from:
Parsec
def <|>[R >: C](p: Parsec[A, R]): Parsec[A, R]

Attributes

Inherited from:
Parsec
def ?(state: State[A]): Try[B]

Attributes

Inherited from:
Parsec
def attempt: Parsec[A, B]

Attributes

Inherited from:
Parsec
def iterate[R >: C](state: State[A]): Iterator[A, R]

Attributes

Inherited from:
Parsec

Concrete fields

val f: B => Parsec[A, C]
val parsec: Parsec[A, B]