(&self, n: usize)
| 394 | /// Get the [`ABIOperand`] result in the nth position. |
| 395 | #[cfg(test)] |
| 396 | pub fn get(&self, n: usize) -> Option<&ABIOperand> { |
| 397 | self.operands.inner.get(n) |
| 398 | } |
| 399 | |
| 400 | /// Returns the first [`ABIOperand`]. |
| 401 | /// Useful in situations where the function signature is known to |
no outgoing calls