|
SeqAn3 3.4.1-rc.1
The Modern C++ library for sequence analysis.
|
A printer for character sequences. More...
#include <seqan3/core/debug_stream/range.hpp>
Public Member Functions | |
| template<typename stream_t , typename arg_t > | |
| constexpr void | operator() (stream_t &stream, arg_t &&arg) const |
| Prints the character sequence to the given stream. | |
A printer for character sequences.
This struct provides a printer for character sequences. It is used to print character sequences to a stream. The character sequence must be an input range and the range reference type must be a character type, i.e. seqan3::detail::is_char_adaptation_v evaluates to true.
| char_sequence_t | The type of the character sequence. |
|
inlineconstexpr |
Prints the character sequence to the given stream.
| stream_t | The type of the stream. |
| arg_t | The type of the argument. |
| stream | The stream to print to. |
| arg | The character sequence to print. |