Check whether the value is an f32 constant.
(&self)
| 283 | |
| 284 | /// Check whether the value is an f32 constant. |
| 285 | pub fn is_f32_const(&self) -> bool { |
| 286 | match *self { |
| 287 | Self::F32(_) => true, |
| 288 | _ => false, |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | /// Check whether the value is an f64 constant. |
| 293 | pub fn is_f64_const(&self) -> bool { |
no outgoing calls
no test coverage detected