//! Helpers
use crate::*;
/// 1MB of pure noise
pub static NOISE: Lazy = new;
/// 1MB of pure Unstructured noise
/// A generator backed by 1M of randomness. Useful for tests and for examples.
/// This should not be used in production tests. Better to use a fuzzer like AFL
/// to generate bytes, and construct a generator using `Generator::from(bytes)`