Sha256: 1bf99de94ac05ac18c36e1eb3c9b01fcd4e5eddb47c82fe2722c8fc327e29cb8
Contents?: true
Size: 785 Bytes
Versions: 3
Compression:
Stored size: 785 Bytes
Contents
use crate::{size_hint, Arbitrary, MaxRecursionReached, Result, Unstructured}; 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(Arbitrary::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)?), )) } }
Version data entries
3 entries across 3 versions & 1 rubygems