pub fn combine_n<T>(o: &T, times: u32) -> Twhere T: Monoid + Semigroup + Clone,
Return this combined with itself n times.
n
use frunk::monoid; assert_eq!(monoid::combine_n(&Some(2), 4), Some(8));