Try to understand the most input values possible and make an internal value from them
(self, pkt, x)
| 220 | return cast(M, x) |
| 221 | |
| 222 | def any2i(self, pkt, x): |
| 223 | # type: (Optional[Packet], Any) -> Optional[I] |
| 224 | """Try to understand the most input values possible and make an internal value from them""" # noqa: E501 |
| 225 | return self.h2i(pkt, x) |
| 226 | |
| 227 | def i2repr(self, pkt, x): |
| 228 | # type: (Optional[Packet], I) -> str |