lipsum-cpp 0.5.4
A basic library written in C++ for generating placeholder Lorem Ipsum text.
Loading...
Searching...
No Matches
lipsum::internal::Streamable Concept Reference

Can std::ostream take T? More...

#include <internal.hpp>

Concept definition

template<typename T>
concept Streamable = requires(std::ostream& outs, const T& value) {
{ outs << value } -> std::same_as<std::ostream&>;
} && (!ToStringable<T>)
Can std::ostream take T?
Definition internal.hpp:65

Detailed Description

Can std::ostream take T?

Since
0.4.6

Can std::ostream take T and not by std::to_string()?