(self)
| 112 | } |
| 113 | #[inline] |
| 114 | fn wasm_ceil(self) -> f32 { |
| 115 | if self.is_nan() { |
| 116 | return f32::NAN; |
| 117 | } |
| 118 | #[cfg(feature = "std")] |
| 119 | if !cfg!(target_arch = "riscv64") { |
| 120 | return self.ceil(); |
| 121 | } |
| 122 | libm::ceilf(self) |
| 123 | } |
| 124 | #[inline] |
| 125 | fn wasm_sqrt(self) -> f32 { |
| 126 | #[cfg(feature = "std")] |