sequoia-sq 1.4.0

Command-line frontends for Sequoia
//! Lightweight pluralization support.

use std::fmt;

use crate::output::wrapping::NBSP;

/// Pluralizes countable things when formatted.
pub struct Pluralized<'t, 's> {
    /// The amount of things we have.
    count: usize,

    /// Of these things.
    thing: &'t str,

    /// Use this plural suffix.
    plural_suffix: &'s str,
}

impl fmt::Display for Pluralized<'_, '_> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}{}{}{}",
               self.count,
               NBSP,
               self.thing,
               if self.count == 1 { "" } else { self.plural_suffix })
    }
}

impl<'t, 's> Pluralized<'t, 's> {
    /// Changes the plural suffix.
    pub fn plural<'n>(self, suffix: &'n str) -> Pluralized<'t, 'n> {
        Pluralized {
            count: self.count,
            thing: self.thing,
            plural_suffix: suffix,
        }
    }
}

/// Provides convenient pluralization.
///
/// # Examples
///
/// ```
/// use Pluralize;
/// assert_eq!(&3.of("apple").to_string(), "3 apples");
/// assert_eq!(&2.of("bus").plural("es").to_string(), "2 buses");
/// ```
pub trait Pluralize<'t> {
    fn of(self, thing: &'t str) -> Pluralized<'t, 'static>;
}

impl<'t> Pluralize<'t> for usize {
    fn of(self, thing: &'t str) -> Pluralized<'t, 'static> {
        Pluralized {
            count: self,
            thing: thing,
            plural_suffix: "s",
        }
    }
}