Cons

jaskell.parsec.Cons
case class Cons[A, B, C](prev: Parsec[A, B], next: Parsec[A, C]) extends Parsec[A, C]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
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
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product