ParserBridge17

parsley.genericbridges$.ParserBridge17
trait ParserBridge17[-T1, -T2, -T3, -T4, -T5, -T6, -T7, -T8, -T9, -T10, -T11, -T12, -T13, -T14, -T15, -T16, -T17, +R] extends ParserSingletonBridge[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17) => R]

Generic bridge trait for types that have constructors of arity 17.

Attributes

Source:
genericbridges.scala
Graph
Supertypes
trait ParserSingletonBridge[(T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17) => R]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Abstract methods

def apply(x1: T1, x2: T2, x3: T3, x4: T4, x5: T5, x6: T6, x7: T7, x8: T8, x9: T9, x10: T10, x11: T11, x12: T12, x13: T13, x14: T14, x15: T15, x16: T16, x17: T17): R

The abstract hook method: this is the method that should be used to combine the results of the parsers provided to the template method into the result type R.

The abstract hook method: this is the method that should be used to combine the results of the parsers provided to the template method into the result type R.

Attributes

Source:
genericbridges.scala

Concrete methods

def apply(x1: Parsley[T1], x2: => Parsley[T2], x3: => Parsley[T3], x4: => Parsley[T4], x5: => Parsley[T5], x6: => Parsley[T6], x7: => Parsley[T7], x8: => Parsley[T8], x9: => Parsley[T9], x10: => Parsley[T10], x11: => Parsley[T11], x12: => Parsley[T12], x13: => Parsley[T13], x14: => Parsley[T14], x15: => Parsley[T15], x16: => Parsley[T16], x17: => Parsley[T17]): Parsley[R]

The template method: this is the method that can be used to sequence and combine the results of all the parsers.

The template method: this is the method that can be used to sequence and combine the results of all the parsers.

Attributes

Source:
genericbridges.scala
final override def con: (T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, T16, T17) => 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.

Attributes

op

the parser that should be parsed before returning con.

Inherited from:
ParserSingletonBridge
Source:
genericbridges.scala