Clear out the arguments list.
(&mut self, pool: &mut ValueListPool)
| 134 | |
| 135 | /// Clear out the arguments list. |
| 136 | pub fn clear(&mut self, pool: &mut ValueListPool) { |
| 137 | self.values.truncate(1, pool) |
| 138 | } |
| 139 | |
| 140 | /// Appends multiple elements to the arguments. |
| 141 | pub fn extend<I, T>(&mut self, elements: I, pool: &mut ValueListPool) |