-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathoption.rs
48 lines (43 loc) · 1.21 KB
/
option.rs
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
use {
crate::{size_hint, Arbitrary, ArbitraryInRange, MaxRecursionReached, Result, Unstructured},
core::ops::RangeBounds,
};
impl<'a, A> ArbitraryInRange<'a> for Option<A>
where
A: ArbitraryInRange<'a>,
{
type Bound = A::Bound;
fn arbitrary_in_range<R>(u: &mut Unstructured<'a>, range: &R) -> Result<Self>
where
R: RangeBounds<Self::Bound>,
{
Ok(if <bool as Arbitrary<'a>>::arbitrary(u)? {
Some(A::arbitrary_in_range(u, range)?)
} else {
None
})
}
}
impl<'a, A> Arbitrary<'a> for Option<A>
where
A: Arbitrary<'a>,
{
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
Ok(if <bool as Arbitrary<'a>>::arbitrary(u)? {
Some(A::arbitrary(u)?)
} else {
None
})
}
#[inline]
fn size_hint(depth: usize) -> (usize, Option<usize>) {
Self::try_size_hint(depth).unwrap_or_default()
}
#[inline]
fn try_size_hint(depth: usize) -> Result<(usize, Option<usize>), MaxRecursionReached> {
Ok(size_hint::and(
<bool as Arbitrary>::try_size_hint(depth)?,
size_hint::or((0, Some(0)), <A as Arbitrary>::try_size_hint(depth)?),
))
}
}