pub const trait MulCeil<Rhs = Self> {
type Output;
fn mul_ceil(self, rhs: Rhs) -> Self::Output;
}
impl const MulCeil for f64 {
type Output = f64;
fn mul_ceil(self, rhs: f64) -> f64 {
(self * rhs).ceil()
}
}
#[macro_export]
macro_rules! impl_mul_ceil {
($($name:ident),+ $(,)?) => {
$(
impl const $crate::mul_ceil::MulCeil<f64> for $name {
type Output = f64;
fn mul_ceil(self, rhs: f64) -> Self::Output {
(f64::from(self) * rhs).ceil()
}
}
impl const $crate::mul_ceil::MulCeil<$name> for f64 {
type Output = f64;
fn mul_ceil(self, rhs: $name) -> Self::Output {
(self * f64::from(rhs)).ceil()
}
}
)+
};
}
impl_mul_ceil!(i8, u8, i16, u16, i32, u32, f32);
#[cfg(test)]
mod tests {
use super::MulCeil;
#[test]
fn mul_ceil() {
assert_eq!(3.0.mul_ceil(2.0), 6.0);
assert_eq!(3.0.mul_ceil(2.1), 7.0);
assert_eq!(3.0.mul_ceil(2.5), 8.0);
assert_eq!(3.0.mul_ceil(2.9), 9.0);
}
}