(self)
| 303 | #[must_use = "method returns a new number and does not mutate the original value"] |
| 304 | #[inline] |
| 305 | fn sin(self) -> f32 { |
| 306 | f32_intrinsic!(self, sin()) |
| 307 | } |
| 308 | |
| 309 | /// Computes the cosine of a number (in radians). |
| 310 | #[must_use = "method returns a new number and does not mutate the original value"] |
no outgoing calls
no test coverage detected