Parser

caseapp.core.parser.Parser$
See theParser companion class

Attributes

Companion:
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
Parser.type

Members list

Concise view

Type members

Inherited classlikes

sealed abstract class Step extends Product with Serializable

Attributes

Inherited from:
ParserCompanion
Graph
Supertypes
trait Product
trait Equals
class Object
trait Matchable
class Any
Known subtypes
object Step

Attributes

Inherited from:
ParserCompanion
Graph
Supertypes
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply[T](implicit parser: Parser[T]): Parser[T]

Look for an implicit Parser[T]

Look for an implicit Parser[T]

Attributes

def nil: Parser[EmptyTuple]

Inherited methods

def consumed(initial: List[String], updated: List[String]): Int

Attributes

Inherited from:
ParserCompanion

Givens

Inherited givens

inline given derive[T](using m: ProductOf[T]): Parser[T]

Attributes

Inherited from:
LowPriorityParserImplicits

Implicits

Implicits

implicit def either[T](implicit parser: Parser[T]): Parser[Either[Error, T]]
implicit def option[T](implicit parser: Parser[T]): Parser[Option[T]]
implicit def toParserOps[T <: Tuple](parser: Parser[T]): ParserOps[T]