SeqAn3 3.4.0-rc.4
The Modern C++ library for sequence analysis.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
seqan3::alignment_printer< alignment_t > Struct Template Reference

The printer for alignment. More...

#include <seqan3/alignment/aligned_sequence/debug_stream_alignment.hpp>

Public Member Functions

template<typename stream_t , typename arg_t >
constexpr void operator() (stream_t &stream, arg_t &&arg) const
 The function call operator that pretty prints the alignment to the stream.
 

Detailed Descriptionno-api

template<typename alignment_t>
requires tuple_like<alignment_t> && detail::all_model_aligned_seq<detail::tuple_type_list_t<alignment_t>>
struct seqan3::alignment_printer< alignment_t >

The printer for alignment.

Template Parameters
alignment_tThe type of the alignment; must model seqan3::tuple_like and all sequences must be seqan3::aligned_sequence.

Member Function Documentation

◆ operator()() [no-api]

template<typename alignment_t >
template<typename stream_t , typename arg_t >
constexpr void seqan3::alignment_printer< alignment_t >::operator() ( stream_t &  stream,
arg_t &&  arg 
) const
no-apiinlineconstexpr

The function call operator that pretty prints the alignment to the stream.

Template Parameters
stream_tThe type of the stream.
arg_tThe type of the argument.
Parameters
[in,out]streamThe target stream for the formatted output.
[in]argThe alignment that shall be formatted. All sequences must be equally long.

The documentation for this struct was generated from the following file:
Hide me