dicetest 0.4.0

Framework for writing tests with randomly generated test data
Documentation
//! The standard collection of [`DieOnce`] and [`Die`] implementations.
//!
//! [`DieOnce`]: crate::DieOnce
//! [`Die`]: crate::Die

mod from;
pub use from::*;

mod todo;
pub use todo::*;

mod just;
pub use just::*;

mod zip;
pub use zip::*;

mod one_of;
pub use one_of::*;

mod bool;
pub use self::bool::*;

mod integer;
pub use integer::*;

mod float;
pub use float::*;

mod char;
pub use self::char::*;

mod array;
pub use array::*;

mod option;
pub use option::*;

mod result;
pub use result::*;

mod length;
pub use length::*;

mod split_integer;
pub use split_integer::*;

mod collection;
pub use collection::*;

mod vec;
pub use vec::*;

mod vec_deque;
pub use vec_deque::*;

mod linked_list;
pub use linked_list::*;

mod hash_map;
pub use hash_map::*;

mod b_tree_map;
pub use b_tree_map::*;

mod hash_set;
pub use hash_set::*;

mod b_tree_set;
pub use b_tree_set::*;

mod binary_heap;
pub use binary_heap::*;

mod string;
pub use string::*;

mod shuffle;
pub use shuffle::*;

mod split_vec;
pub use split_vec::*;

mod fn_builder;
pub use fn_builder::*;

mod index_of;
pub use index_of::*;