[][src]Function proptest::array::uniform27

pub fn uniform27<S: Strategy>(
    strategy: S
) -> UniformArrayStrategy<S, [S::Value; 27]>

Create a strategy to generate fixed-length arrays.

All values within the new strategy are generated using the given strategy. The length of the array corresponds to the suffix of the name of this function.

See UniformArrayStrategy for example usage.