Decode an extended opcode from `pc` to match the payload of the "extended" opcode.
(pc: &mut T)
| 779 | /// Decode an extended opcode from `pc` to match the payload of the |
| 780 | /// "extended" opcode. |
| 781 | pub fn extended<T: BytecodeStream>(pc: &mut T) -> Result<(ExtendedOpcode,), T::Error> { |
| 782 | Ok((ExtendedOpcode::decode(pc)?,)) |
| 783 | } |
| 784 | |
| 785 | for_each_extended_op!(define_operands_decoder); |
| 786 | } |