(casts: &[Bitcast], operands: &[String], results: &mut Vec<String>)
| 1822 | } |
| 1823 | |
| 1824 | fn bitcast(casts: &[Bitcast], operands: &[String], results: &mut Vec<String>) { |
| 1825 | for (cast, operand) in casts.iter().zip(operands) { |
| 1826 | results.push(perform_cast(operand, cast)); |
| 1827 | } |
| 1828 | } |
| 1829 | |
| 1830 | fn perform_cast(operand: &str, cast: &Bitcast) -> String { |
| 1831 | match cast { |
no test coverage detected