| 97 | IntPort Encoded() const { return value_; } |
| 98 | |
| 99 | static Port Decode(IntPort encoded) { return Port(encoded); } |
| 100 | |
| 101 | bool operator==(const Port& other) const { return value_ == other.value_; } |
| 102 | bool operator<(const Port& other) const { return value_ < other.value_; } |