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::mask_printer< mask_t > Struct Template Reference

The printer used for formatted output of seqan3::mask alphabet. More...

#include <seqan3/alphabet/detail/debug_stream_alphabet.hpp>

Public Member Functions

template<typename stream_t >
constexpr void operator() (stream_t &stream, mask_t const arg) const noexcept
 Print the mask alphabet to the stream.
 

Detailed Descriptionno-api

template<std::same_as< mask > mask_t>
struct seqan3::mask_printer< mask_t >

The printer used for formatted output of seqan3::mask alphabet.

Prints "MASKED" if the letter is masked and "UNMASKED" otherwise.

Template Parameters
mask_tThe type of the alphabet to be printed. Must be seqan3::mask.

Member Function Documentation

◆ operator()() [no-api]

template<std::same_as< mask > mask_t>
template<typename stream_t >
constexpr void seqan3::mask_printer< mask_t >::operator() ( stream_t &  stream,
mask_t const  arg 
) const
no-apiinlineconstexprnoexcept

Print the mask alphabet to the stream.

Template Parameters
stream_tThe type of the stream.
Parameters
[in,out]streamThe stream to print to.
[in]argThe mask alphabet letter.

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