Function uniform
fn uniform<S: Strategy, N: usize>(strategy: S) -> UniformArrayStrategy<S, [<S as >::Value; N]>
Create a strategy to generate fixed-length arrays.
All values within the new strategy are generated using the given strategy.
See UniformArrayStrategy for
example usage.