Retrieve multiple SSA references; see `get`.
(&self, names: &[ValueRef])
| 61 | |
| 62 | /// Retrieve multiple SSA references; see `get`. |
| 63 | pub fn get_all(&self, names: &[ValueRef]) -> Vec<DataValue> { |
| 64 | names.iter().map(|r| self.get(*r)).cloned().collect() |
| 65 | } |
| 66 | |
| 67 | /// Assign `value` to the SSA reference `name`. |
| 68 | #[inline] |
no test coverage detected