Peek into the top in the stack.
(&self)
| 382 | |
| 383 | /// Peek into the top in the stack. |
| 384 | pub fn peek(&self) -> Option<&Val> { |
| 385 | self.inner.last() |
| 386 | } |
| 387 | |
| 388 | /// Returns an iterator referencing the last n items of the stack, |
| 389 | /// in bottom-most to top-most order. |
no test coverage detected