Push a value to the stack.
(&mut self, val: Val)
| 377 | |
| 378 | /// Push a value to the stack. |
| 379 | pub fn push(&mut self, val: Val) { |
| 380 | self.inner.push(val); |
| 381 | } |
| 382 | |
| 383 | /// Peek into the top in the stack. |
| 384 | pub fn peek(&self) -> Option<&Val> { |
no outgoing calls