Extend the stack with the given elements.
(&mut self, values: impl IntoIterator<Item = Val>)
| 356 | |
| 357 | /// Extend the stack with the given elements. |
| 358 | pub fn extend(&mut self, values: impl IntoIterator<Item = Val>) { |
| 359 | self.inner.extend(values); |
| 360 | } |
| 361 | |
| 362 | /// Inserts many values at the given index. |
| 363 | pub fn insert_many(&mut self, at: usize, values: &[Val]) { |
no outgoing calls