#![doc = include_str!("../README.md")]
#![allow(clippy::module_name_repetitions)]
/// Implements [`Display`](std::fmt::Display) wrapper for iterators.
pub mod iter;
/// Implements [`Display`](std::fmt::Display) wrapper for tuples.
pub mod tuple;
/// Implements [`PrintableWrapper`](wrapper::PrintableWrapper).
pub mod wrapper;
/// Crate's prelude.
pub mod prelude {
pub use crate::{iter::PrintableIter, tuple::PrintableTuple, wrapper::PrintableWrapper};
}