use {
crate ::{Arbitrary, MaxRecursionReached, Result, Unstructured},
core::cell::{Cell, RefCell, UnsafeCell},
};
impl <'a, A> Arbitrary<' a> for Cell<A>
where
A: Arbitrary<'a>,
{
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
Arbitrary::arbitrary(u).map(Self ::new)
}
#[ 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> {
<A as Arbitrary<'a>>::try_size_hint(depth)
}
}
impl <'a, A> Arbitrary<' a> for RefCell<A>
where
A: Arbitrary<'a>,
{
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
Arbitrary::arbitrary(u).map(Self ::new)
}
#[ 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> {
<A as Arbitrary<'a>>::try_size_hint(depth)
}
}
impl <'a, A> Arbitrary<' a> for UnsafeCell<A>
where
A: Arbitrary<'a>,
{
fn arbitrary(u: &mut Unstructured<'a>) -> Result<Self> {
Arbitrary::arbitrary(u).map(Self ::new)
}
#[ 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> {
<A as Arbitrary<'a>>::try_size_hint(depth)
}
}
Messung V0.5 in Prozent C=85 H=100 G=92
¤ Dauer der Verarbeitung: 0.3 Sekunden
¤
*© Formatika GbR, Deutschland