pub fn vec<T>(element: T, size: impl Into<SizeRange>) -> VecStrategy<T>where
T: Strategy,Expand description
Create a strategy to generate Vecs 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).