use fmt;
/// Formats a boolean as either a checked or unchecked ballot box.
/// ```
/// # use fmtastic::BallotBox;
/// assert_eq!("☑ Buy bread", format!("{} Buy bread", BallotBox(true)));
/// assert_eq!("☐ Do the dishes", format!("{} Do the dishes", BallotBox(false)));
/// assert_eq!("☒ Laundry", format!("{:#} Laundry", BallotBox(true)));
/// ```
///
/// ## Formatting Flags
/// ### Alternate `#`
/// By default a ballot box with a check (`☑`) is used.
/// The alternate flag `#` can be used to use a ballot box with an x instead (`☒`).
;