package popper

  1. Overview
  2. Docs
val pair : 'a t -> 'b t -> ('a * 'b) t

pair s1 s2 is a sample that produces a pair using s1 and s2 and combines their results.

val tripple : 'a t -> 'b t -> 'c t -> ('a * 'b * 'c) t

tripple s1 s2 s3 is a sample that produces a tuple using s1, s2 and s3 and combines their results.

val quad : 'a t -> 'b t -> 'c t -> 'd t -> ('a * 'b * 'c * 'd) t

quad s1 s2 s3 s4 is a sample that produces a tuple using s1, s2 , s3 and s4 and combines their results.