use std::ops::Add; pub fn countable_noun_suffix(count: T, singular: &'static str, plural: &'static str) -> &'static str where T: Default + Add + PartialEq, { match count == (T::default() + 1) { true => singular, false => plural, } }