| 1293 | friend bool operator!=(const It &a, const It &b) { return !(a == b); } |
| 1294 | friend bool operator<(const It &a, const It &b) { return b - a > 0; } |
| 1295 | friend bool operator>(const It &a, const It &b) { return b < a; } |
| 1296 | friend bool operator>=(const It &a, const It &b) { return !(a < b); } |
| 1297 | friend bool operator<=(const It &a, const It &b) { return !(a > b); } |
| 1298 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected