SeqAn3 3.4.0-rc.3
The Modern C++ library for sequence analysis.
|
Implementation of a masked alphabet to be used for tuple composites. More...
#include <seqan3/alphabet/mask/mask.hpp>
Public Member Functions | |
Constructors, destructor and assignment | |
constexpr | mask ()=default |
Defaulted. | |
constexpr | mask (mask const &)=default |
Defaulted. | |
constexpr | mask (mask &&)=default |
Defaulted. | |
constexpr mask & | operator= (mask const &)=default |
Defaulted. | |
constexpr mask & | operator= (mask &&)=default |
Defaulted. | |
~mask ()=default | |
Defaulted. | |
Public Member Functions inherited from seqan3::alphabet_base< mask, 2, void > | |
constexpr | alphabet_base () noexcept=default |
Defaulted. | |
constexpr | alphabet_base (alphabet_base const &) noexcept=default |
Defaulted. | |
constexpr | alphabet_base (alphabet_base &&) noexcept=default |
Defaulted. | |
constexpr alphabet_base & | operator= (alphabet_base const &) noexcept=default |
Defaulted. | |
constexpr alphabet_base & | operator= (alphabet_base &&) noexcept=default |
Defaulted. | |
~alphabet_base () noexcept=default | |
Defaulted. | |
constexpr char_type | to_char () const noexcept |
Return the letter as a character of char_type. | |
constexpr rank_type | to_rank () const noexcept |
Return the letter's numeric value (rank in the alphabet). | |
constexpr mask & | assign_char (char_type const chr) noexcept |
Assign from a character, implicitly converts invalid characters. | |
constexpr mask & | assign_rank (rank_type const c) noexcept |
Assign from a numeric value. | |
Static Public Attributes | |
Boolean values | |
Static member "booleans" that can be assigned to the alphabet or used in aggregate initialization. Similar to an Enum interface. | |
static mask const | unmasked {mask{}.assign_rank(0)} |
Member for unmasked. | |
static mask const | masked {mask{}.assign_rank(1)} |
Member for masked. | |
Static Public Attributes inherited from seqan3::alphabet_base< mask, 2, void > | |
static constexpr detail::min_viable_uint_t< size > | alphabet_size |
The size of the alphabet, i.e. the number of different values it can take. | |
Additional Inherited Members | |
Protected Types inherited from seqan3::alphabet_base< mask, 2, void > | |
using | char_type = std::conditional_t< std::same_as< void, void >, char, void > |
The char representation; conditional needed to make semi alphabet definitions legal. | |
using | rank_type = detail::min_viable_uint_t< size - 1 > |
The type of the alphabet when represented as a number (e.g. via to_rank()). | |
Implementation of a masked alphabet to be used for tuple composites.
This alphabet is not usually used directly, but instead via seqan3::masked.
|
staticconstexpr |
Member for masked.
|
staticconstexpr |
Member for unmasked.