Remove the argument at ix from the argument list.
(&mut self, ix: usize, pool: &mut ValueListPool)
| 129 | |
| 130 | /// Remove the argument at ix from the argument list. |
| 131 | pub fn remove(&mut self, ix: usize, pool: &mut ValueListPool) { |
| 132 | self.values.remove(1 + ix, pool) |
| 133 | } |
| 134 | |
| 135 | /// Clear out the arguments list. |
| 136 | pub fn clear(&mut self, pool: &mut ValueListPool) { |
no outgoing calls