Returns a view that formats value via an ostream operator<<.
Declared in <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()));
a view that formats value via an ostream operator<<.