Eof

class Eof[E] extends Parsec[E, Unit]
Companion
object
trait Parsec[E, Unit]
class Object
trait Matchable
class Any

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

Value Params
state

parse state

Returns

a unit Try object

Inherited methods

def !(state: State[E]): Unit
Inherited from
Parsec
def <?>[C >: Unit](message: String): Parsec[E, C]
Inherited from
Parsec
def <|>[R >: Unit](p: Parsec[E, R]): Parsec[E, R]
Inherited from
Parsec
def ?(state: State[E]): Try[Unit]
Inherited from
Parsec
def attempt: Parsec[E, Unit]
Inherited from
Parsec
def iterate[R >: Unit](state: State[E]): Iterator[E, R]
Inherited from
Parsec