Returns a view that formats value via an ostream operator<<.
<fmt/ostream.h>
template<typename T>
constexpr
/* implementation-defined */
streamed(T const& value);
Example:
fmt::print("Current thread id: {}n", fmt::streamed(std::this_thread::get_id()));
value via an ostream operator<<.