| 297 | } |
| 298 | |
| 299 | inline constexpr bool IsHigher(const Version &other) const { |
| 300 | return !this->IsLower(other) && !this->IsEqual(other); |
| 301 | } |
| 302 | |
| 303 | inline constexpr bool IsEqual(const Version &other) const { |
| 304 | return ((this->major == other.major) && (this->minor == other.minor) && (this->micro == other.micro)); |
no test coverage detected