Eof

jaskell.parsec.Eof
See theEof companion object
class Eof[E] extends Parsec[E, Unit]

Attributes

Companion:
object
Graph
Supertypes
trait Parsec[E, Unit]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

def apply(state: State[E]): Try[Unit]

Eof success only state eof, else return failure

Eof success only state eof, else return failure

Attributes

state

parse state

Returns:

a unit Try object

Inherited methods

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
Parsec