Skip

jaskell.parsec.Skip
case class Skip[E](psc: Parsec[E, _]) extends Parsec[E, Unit]

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

Attributes

Version:

1.0.0

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Parsec[E, Unit]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Concrete methods

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

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
def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product

Concrete fields

val p: Attempt[E, _]