| 162 | bool operator>=(const SimpleReject& other) const noexcept { return !operator<(other); } |
| 163 | |
| 164 | std::string string() const { std::stringstream ss; ss << *this; return ss.str(); } |
| 165 | |
| 166 | friend std::ostream& operator<<(std::ostream& stream, const SimpleReject& value); |
| 167 |
nothing calls this directly
no outgoing calls
no test coverage detected