Same as [`std::vec::Vec::pop`].
(&mut self)
| 160 | |
| 161 | /// Same as [`std::vec::Vec::pop`]. |
| 162 | pub fn pop(&mut self) -> Option<T> { |
| 163 | self.inner.pop() |
| 164 | } |
| 165 | |
| 166 | /// Same as [`std::vec::Vec::truncate`]. |
| 167 | pub fn truncate(&mut self, len: usize) { |
no outgoing calls