pub use super::boundary::BoundaryLengths;
pub use super::edge_cases::EdgeCases;
pub use super::exhaustive::ExhaustiveByteRange;
pub use super::pathological::Pathological;
pub use super::random::RandomUniform;
pub use super::u32_pathological::U32Pathological;
use crate::spec::types::OpSignature;
#[inline]
pub(crate) fn u32_bytes(value: u32) -> Vec<u8> {
value.to_le_bytes().to_vec()
}