Function zebra_test::prelude::prop::array::uniform

pub fn uniform<S, const N: usize>(
    strategy: S
) -> UniformArrayStrategy<S, [<S as Strategy>::Value; N]>
where S: Strategy,
Expand description

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.