Get all value arguments on `inst` as a slice.
(&self, inst: Inst)
| 914 | |
| 915 | /// Get all value arguments on `inst` as a slice. |
| 916 | pub fn inst_args(&self, inst: Inst) -> &[Value] { |
| 917 | self.insts[inst].arguments(&self.value_lists) |
| 918 | } |
| 919 | |
| 920 | /// Get all value arguments on `inst` as a mutable slice. |
| 921 | pub fn inst_args_mut(&mut self, inst: Inst) -> &mut [Value] { |
no outgoing calls
no test coverage detected