Is

jaskell.parsec.Is
class Is[T](val predicate: T => Boolean) extends Parsec[T, T]

TODO

Attributes

Version:

1.0.0

Since:

2020/07/23 14:18

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

Members list

Concise view

Value members

Concrete methods

def apply(s: State[T]): Try[T]

Inherited methods

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

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

Attributes

Inherited from:
Parsec

Concrete fields

val predicate: T => Boolean