| 526 | bool operator>=(const value& x, const value& y) { return not(x < y); } |
| 527 | |
| 528 | static void print_value(std::ostream& os, std::nullptr_t) { os << "null"; } |
| 529 | |
| 530 | template <class T> |
| 531 | static void print_value(std::ostream& os, const T& x) |
no test coverage detected