Skip

class Skip[E](val psc: Parsec[E, _]) extends Parsec[E, Unit]

Skip p applies the parser p zero or more times, skipping its result.

Skip p applies the parser p zero or more times, skipping its result.

Authors

mars

Version

1.0.0

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

Value members

Concrete methods

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

Inherited methods

def !(state: State[E]): Unit
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

Concrete fields

val p: Attempt[E, _]
val psc: Parsec[E, _]