see https://github.com/rust-lang/rust/issues/137578 :(
| 1 | // see https://github.com/rust-lang/rust/issues/137578 :( |
| 2 | pub(super) trait NoStdFloatExt { |
| 3 | fn round(self) -> Self; |
| 4 | fn ceil(self) -> Self; |
| 5 | fn floor(self) -> Self; |
| 6 | fn trunc(self) -> Self; |
| 7 | fn sqrt(self) -> Self; |
| 8 | } |
| 9 | |
| 10 | #[rustfmt::skip] |
| 11 | impl NoStdFloatExt for f64 { |
nothing calls this directly
no outgoing calls
no test coverage detected