(self)
| 231 | #[must_use = "method returns a new number and does not mutate the original value"] |
| 232 | #[inline] |
| 233 | fn sqrt(self) -> f32 { |
| 234 | f32_intrinsic!(self, sqrt()) |
| 235 | } |
| 236 | |
| 237 | /// Returns `e^(self)`, (the exponential function). |
| 238 | #[must_use = "method returns a new number and does not mutate the original value"] |
no outgoing calls
no test coverage detected