You can search for identifiers within the package.
in-package search v0.2.0
popper
Sample.List
val of_length : int -> 'a t -> 'a list t
of_length n is a sample that always produces a list of fixed size n.
of_length n
n
val range : int -> int -> 'a t -> 'a list t
range min max s is a sample that always produces a list of size n, where min <= n < max, using the given sample s.
range min max s
min <= n < max
s
val non_empty : 'a t -> 'a list t
non_empty s produces a non-empty list using the sample s to draw the elements.
non_empty s