//! Zipf distribution implementation for load testing.
//!
//! This module provides zipf distributed variates for realistic load testing scenarios.
//! See: <https://en.wikipedia.org/wiki/Zipf%27s_law>
/// Mathematical derivation of the Zipf sampling formulas.
pub use ZipfError;
pub use ZipfIterator;
pub use Zipf;