Pops the top element of the stack, if any.
(&mut self)
| 397 | |
| 398 | /// Pops the top element of the stack, if any. |
| 399 | pub fn pop(&mut self) -> Option<Val> { |
| 400 | self.inner.pop() |
| 401 | } |
| 402 | |
| 403 | /// Pops the element at the top of the stack if it is an i32 const; |
| 404 | /// returns `None` otherwise. |
no outgoing calls