1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![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};
}