1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
use crate::std_facade::string;
use core::ops::RangeInclusive;
use core::option as opt;
use crate::arbitrary::*;
use crate::option::{weighted, OptionStrategy, Probability};
use crate::strategy::statics::static_map;
use crate::strategy::*;
arbitrary!(Probability, MapInto<RangeInclusive<f64>, Self>;
(0.0..=1.0).prop_map_into()
);
arbitrary!(Option<string::ParseError>; None);
#[cfg(feature = "unstable")]
arbitrary!(Option<!>; None);
arbitrary!([A: Arbitrary] opt::Option<A>, OptionStrategy<A::Strategy>,
product_type![Probability, A::Parameters];
args => {
let product_unpack![prob, a] = args;
weighted(prob, any_with::<A>(a))
}
);
lift1!([] Option<A>, Probability; base, prob => weighted(prob, base));
arbitrary!([A: Arbitrary] opt::IntoIter<A>, SMapped<Option<A>, Self>,
<Option<A> as Arbitrary>::Parameters;
args => static_map(any_with::<Option<A>>(args), Option::into_iter));
lift1!(['static] opt::IntoIter<A>, Probability;
base, prob => weighted(prob, base).prop_map(Option::into_iter)
);
#[cfg(feature = "unstable")]
arbitrary!(opt::NoneError; opt::NoneError);
#[cfg(test)]
mod test {
no_panic_test!(
probability => Probability,
option => Option<u8>,
option_iter => opt::IntoIter<u8>,
option_parse_error => Option<string::ParseError>
);
}