use fmt;
use ;
/// `Display` wrapper for natural-language list formatting.
///
/// Instances of this type are created via [`crate::list()`] and [`crate::list_with`].
///
/// # Examples
///
/// ```rust
/// use humfmt::list;
///
/// assert_eq!(list(&["red", "green", "blue"]).to_string(), "red, green, and blue");
/// ```