| 43 | constexpr inline bool operator>=(const frame& lhs, const frame& rhs) noexcept { return !(lhs < rhs); } |
| 44 | constexpr inline bool operator==(const frame& lhs, const frame& rhs) noexcept { return lhs.address() == rhs.address(); } |
| 45 | constexpr inline bool operator!=(const frame& lhs, const frame& rhs) noexcept { return !(lhs == rhs); } |
| 46 | |
| 47 | /// Fast hashing support, O(1) complexity; Async-Handler-Safe. |
| 48 | inline std::size_t hash_value(const frame& f) noexcept { |
nothing calls this directly
no outgoing calls
no test coverage detected