LazyZipped3

final implicit class LazyZipped3[T1, T2, T3](t: => (Parsley[T1], Parsley[T2], Parsley[T3]))

Compared with Zipped3, this class is lazy in the receiver and exposes lazyZipped instead, to avoid a clash with the zipped from Scala tuples.

class Object
trait Matchable
class Any

Value members

Concrete methods

def lazyZipped[R](f: (T1, T2, T3) => R): Parsley[R]
def lazyZipped: Parsley[(T1, T2, T3)]
def p1: Parsley[T1]
def p2: Parsley[T2]
def p3: Parsley[T3]