(s: T, o: u16)
| 112 | |
| 113 | #[inline(always)] |
| 114 | pub fn opcode<T>(s: T, o: u16) -> Self |
| 115 | where T: Into<Cow<'a, str>> { |
| 116 | InstructionPart::Opcode(s.into(), o) |
| 117 | } |
| 118 | |
| 119 | #[inline(always)] |
| 120 | pub fn opaque<T>(s: T) -> Self |
no outgoing calls
no test coverage detected