Sha256: 52a7a7e0dbf613c9f96bde05923b8e766cde41493c6bae5a45bf9c1a104d9590
Contents?: true
Size: 336 Bytes
Versions: 3
Compression:
Stored size: 336 Bytes
Contents
use crate::{Arbitrary, Result, Unstructured}; impl<'a> Arbitrary<'a> for bool { fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> { Ok(<u8 as Arbitrary<'a>>::arbitrary(u)? & 1 == 1) } #[inline] fn size_hint(depth: usize) -> (usize, Option<usize>) { <u8 as Arbitrary<'a>>::size_hint(depth) } }
Version data entries
3 entries across 3 versions & 1 rubygems