Pops the element at the top of the stack if it is an f64 const; returns `None` otherwise.
(&mut self)
| 430 | /// Pops the element at the top of the stack if it is an f64 const; |
| 431 | /// returns `None` otherwise. |
| 432 | pub fn pop_f64_const(&mut self) -> Option<Ieee64> { |
| 433 | match self.peek() { |
| 434 | Some(v) => v.is_f64_const().then(|| self.pop().unwrap().unwrap_f64()), |
| 435 | _ => None, |
| 436 | } |
| 437 | } |
| 438 | |
| 439 | /// Pops the element at the top of the stack if it is a register; |
| 440 | /// returns `None` otherwise. |
nothing calls this directly
no test coverage detected