Convert machine value to internal value
(self, pkt, x)
| 206 | return x |
| 207 | |
| 208 | def m2i(self, pkt, x): |
| 209 | # type: (Optional[Packet], M) -> I |
| 210 | """Convert machine value to internal value""" |
| 211 | return cast(I, x) |
| 212 | |
| 213 | def i2m(self, pkt, x): |
| 214 | # type: (Optional[Packet], Optional[I]) -> M |
no outgoing calls
no test coverage detected