proptest-rs / proptest

Hypothesis-like property testing for Rust
Apache License 2.0
1.63k stars 152 forks source link

Use `array::from_fn` instead of `unarray::build_array` #432

Closed DaniPopes closed 4 months ago

DaniPopes commented 4 months ago

core::array::from_fn is stable since 1.63, and the current MSRV is 1.64.

Ideally unarray would get entirely replaced but core::array::try_from_fn is still unstable.