proptest-arbitrary 0.2.0

The Arbitrary trait for proptest and implementations for the standard library.
1
2
3
4
5
6
use super::*;
use std::marker::PhantomData;

arbitrary_for!([T: ?Sized] PhantomData<T>, Just<Self>, (),
    _a => Just(PhantomData)
);