pub fn vec<T: Strategy>(
element: T,
size: impl Into<SizeRange>,
) -> VecStrategy<T>
Expand description
Create a strategy to generate Vec
s containing elements drawn from
element
and with a size range given by size
.
To make a Vec
with a fixed number of elements, each with its own
strategy, you can instead make a Vec
of strategies (boxed if necessary).