You can search for identifiers within the package.
in-package search v0.2.0
popper
Sample.Tuple
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.
pair s1 s2
s1
s2
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.
tripple s1 s2 s3
s3
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.
quad s1 s2 s3 s4
s4