//! Module containing various utility functions.
use NonZeroUsize;
use iter;
/// Generate a boundary string of the specified length.
///
/// Starts with a newline.
///
/// # Examples
///
/// ```
/// # use hrx::util::boundary_str;
/// # use std::num::NonZeroUsize;
/// assert_eq!(boundary_str(NonZeroUsize::new(3).unwrap()), "\n<===>");
/// ```