SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
|
The printer for standard output streams. More...
#include <seqan3/core/debug_stream/default_printer.hpp>
Public Member Functions | |
template<typename stream_t , typename arg_t > requires requires (stream_t & stream) { stream.stream; } | |
constexpr void | operator() (stream_t &stream, arg_t &&arg) const |
The function call operator that prints the value to the stream. | |
The printer for standard output streams.
The std_printer is used as a generic fallback to print regular types that can be printed to a standard output stream, e.g. std::cout.
type_t | The type of the printable argument. |
|
inlineconstexpr |
The function call operator that prints the value to the stream.
This function call operator prints the value to underlying stream of the seqan3::debug_stream. This overload is only provided if the stream is a seqan3::debug_stream.
stream_t | The type of the stream. |
arg_t | The type of the argument. |
[in,out] | stream | The stream to print to. |
[in] | arg | The value to print. |