The test.check
library provides a generate
function that takes a generator and size and returns a single value from the generator with the given size, but it gets its seed nondeterministically. The library also provides a quick-check
function that takes a seed and tries a property using that seed, but it doesn't give a way to control the size or retrieve the return value of the property beyond its truthiness or falsiness.
Is there a way to generate a value with an explicit seed and size, for purposes such as deterministic simulation on generated data?