One

jaskell.parsec.One
class One[A] extends Parsec[A, A]

Attributes

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

Members list

Concise view

Value members

Concrete methods

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

one parser get next item from state, failed when eof.

one parser get next item from state, failed when eof.

Attributes

Inherited methods

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

Attributes

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

Attributes

Inherited from:
Parsec
def <|>[R >: A](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 >: A](state: State[A]): Iterator[A, R]

Attributes

Inherited from:
Parsec