gz-cpp-util 1.3
A c++20 library containing various utilities
gz::util::_ConvertibleToString Concept Reference

Everything that is convertible to string with toString at this point. More...

#include <to_string.hpp>

Concept definition

template<typename T>
requires (const T& t) {
{ gz::toString(t) } -> std::same_as<std::string>;
}
Everything that is convertible to string with toString at this point.
Definition: to_string.hpp:316
std::string toString(const T &s)
Declaration of toString in global namespace, so that concepts can use it.

Detailed Description

Everything that is convertible to string with toString at this point.