LazyZipped2

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

Compared with Zipped2, 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) => R): Parsley[R]
def lazyZipped: Parsley[(T1, T2)]
def p1: Parsley[T1]
def p2: Parsley[T2]