use crate::support::Float; #[inline] pub fn fdim(x: F, y: F) -> F { if x <= y { F::ZERO } else { x - y } }