ParserBridge0

parsley.genericbridges$.ParserBridge0
trait ParserBridge0[+R] extends ParserSingletonBridge[R]

Generic bridge trait for singleton objects that simply return themselves after running the parser provided to <#.

Attributes

Since

4.0.0

Source
genericbridges.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
R

Members list

Value members

Concrete methods

final override def con: R

The abstract hook method: what value is the singleton representing?

The abstract hook method: what value is the singleton representing?

Attributes

Definition Classes
Source
genericbridges.scala

Inherited methods

final def <#(op: Parsley[_]): Parsley[A]

The syntax on this implementing type that performs the parser and returns con.

The syntax on this implementing type that performs the parser and returns con.

Value parameters

op

the parser that should be parsed before returning con.

Attributes

Note

equivalent to from.

Inherited from:
ParserSingletonBridge
Source
genericbridges.scala
final def from(op: Parsley[_]): Parsley[A]

The combinator on this implementing type that performs the parser and returns con.

The combinator on this implementing type that performs the parser and returns con.

Value parameters

op

the parser that should be parsed before returning con.

Attributes

Inherited from:
ParserSingletonBridge
Source
genericbridges.scala