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

Type members

Inherited classlikes

object Step

Attributes

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

Inherited and Abstract classlikes

sealed abstract class Step extends Product, Serializable

Attributes

Inherited from:
ParserCompanion
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all
Known subtypes

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]