proptest-arbitrary 0.2.0

The Arbitrary trait for proptest and implementations for the standard library.
1
2
3
4
5
6
7
8
//! Arbitrary implementations for `std::ascii`.

use super::*;
use std::ascii::{EscapeDefault, escape_default};

arbitrary_for!([] EscapeDefault, SMapped<'a, u8, Self>, ParamsType<'a, u8>,
    args => any_with_smap(args, escape_default)
);