Returns an iterator over all the parameter operands.
(&self)
| 607 | |
| 608 | /// Returns an iterator over all the parameter operands. |
| 609 | pub fn params(&self) -> &[ABIOperand] { |
| 610 | self.params.operands() |
| 611 | } |
| 612 | |
| 613 | /// Returns an iterator over all the result operands. |
| 614 | pub fn results(&self) -> &[ABIOperand] { |
no test coverage detected