| 55 | bool operator>=(const SimpleRequest& other) const noexcept { return !operator<(other); } |
| 56 | |
| 57 | std::string string() const { std::stringstream ss; ss << *this; return ss.str(); } |
| 58 | |
| 59 | friend std::ostream& operator<<(std::ostream& stream, const SimpleRequest& value); |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected