(self)
| 310 | #[must_use = "method returns a new number and does not mutate the original value"] |
| 311 | #[inline] |
| 312 | fn cos(self) -> f32 { |
| 313 | f32_intrinsic!(self, cos()) |
| 314 | } |
| 315 | |
| 316 | /// Computes the tangent of a number (in radians). |
| 317 | #[must_use = "method returns a new number and does not mutate the original value"] |
no outgoing calls
no test coverage detected