| 343 | |
| 344 | template <class T> |
| 345 | std::string as_string(const T& x) |
| 346 | { |
| 347 | std::stringstream ss; |
| 348 | print_stream(ss, x); |
| 349 | return ss.str(); |
| 350 | } |
| 351 | |
| 352 | template <class F> |
| 353 | auto make_function(const std::string& name, F f) |
nothing calls this directly
no test coverage detected