Get the length of the stack.
(&self)
| 372 | |
| 373 | /// Get the length of the stack. |
| 374 | pub fn len(&self) -> usize { |
| 375 | self.inner.len() |
| 376 | } |
| 377 | |
| 378 | /// Push a value to the stack. |
| 379 | pub fn push(&mut self, val: Val) { |
no outgoing calls
no test coverage detected