Re-exports the entire public API of proptest so that an import of prelude
allows simply writing, for example, prop::num::i32::ANY rather than
proptest::num::i32::ANY plus a separate use proptest;.
Generates a Strategy producing Arbitrary values of
A. Unlike arbitrary, it should be used for being
explicit on what A is. For clarity, this may be a good idea.
Generates a Strategy producing Arbitrary values of A with the
given configuration arguments passed in args. Unlike arbitrary_with,
it should be used for being explicit on what A is.
For clarity, this may be a good idea.