| 65 | |
| 66 | template <class T> |
| 67 | auto stream_write_value_impl(rank<1>, std::ostream& os, const T& x) -> decltype(os << x, void()) |
| 68 | { |
| 69 | os << x; |
| 70 | } |
| 71 | |
| 72 | template <class T> |
| 73 | auto stream_write_value_impl(rank<1>, std::ostream& os, const optional<T>& x) |
no test coverage detected