| 1 | /// Sign of Y, magnitude of X (f64) |
|---|---|
| 2 | /// |
| 3 | /// Constructs a number with the magnitude (absolute value) of its |
| 4 | /// first argument, `x`, and the sign of its second argument, `y`. |
| 5 | #[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)] |
| 6 | pub fn copysign(x: f64, y: f64) -> f64 { |
| 7 | super::generic::copysign(x, y) |
| 8 | } |
| 9 |
