|
SeqAn3 3.4.1-rc.1
The Modern C++ library for sequence analysis.
|
Printer for formatted output of tuple like objects. More...
#include <seqan3/core/debug_stream/tuple.hpp>
Public Member Functions | |
| template<typename stream_t , typename arg_t > | |
| constexpr void | operator() (stream_t &stream, arg_t &&arg) const |
| Prints a tuple to a formatted output stream. | |
Printer for formatted output of tuple like objects.
| tuple_t | Type of the tuple to be printed; must model seqan3::tuple_like. |
|
inlineconstexpr |
Prints a tuple to a formatted output stream.
Takes a stream and a tuple object as arguments and prints the tuple elements to the stream. The elements are printed using the detail::print_tuple function.
| 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 tuple to print. |