A template for composite alphabets that differentiate between upper and lower case characters.. More...
#include <bio/alphabet/mask/masked.hpp>
Inheritance diagram for bio::alphabet::masked< sequence_alphabet_t >:Public Types | |
| using | char_type = char_t< sequence_alphabet_type > |
| Equals the char_type of sequence_alphabet_type. | |
| using | sequence_alphabet_type = sequence_alphabet_t |
| First template parameter as member type. | |
Public Member Functions | |
Constructors, destructor and assignment | |
| constexpr | masked ()=default |
| Defaulted. | |
| constexpr | masked (masked const &)=default |
| Defaulted. | |
| constexpr | masked (masked &&) noexcept=default |
| Defaulted. | |
| constexpr masked & | operator= (masked const &)=default |
| Defaulted. | |
| constexpr masked & | operator= (masked &&) noexcept=default |
| Defaulted. | |
| ~masked ()=default | |
| Defaulted. | |
Write functions | |
| constexpr masked & | assign_char (char_type const c) noexcept |
| Assign from a character. | |
Read functions | |
| constexpr char_type | to_char () const noexcept |
| Return a character. | |
Read functions | |
All read operations are constant complexity. | |
| constexpr | operator type () const noexcept |
| Implicit cast to a single letter. Works only if the type is unique in the type list. | |
Read functions | |
| constexpr rank_type | to_rank () const noexcept |
| Return the letter's numeric value (rank in the alphabet). | |
Write functions | |
| constexpr derived_type & | assign_char (char_type const c) noexcept |
| Assign from a character, implicitly converts invalid characters. | |
| constexpr derived_type & | assign_rank (rank_type const c) noexcept |
| Assign from a numeric value. | |
Static Public Attributes | |
| static constexpr size_t | alphabet_size = size |
| The size of the alphabet, i.e. the number of different values it can take. | |
Protected Types | |
Member types | |
| using | rank_type = meta::detail::min_viable_uint_t< size - 1 > |
| The type of the alphabet when represented as a number (e.g. via to_rank()). | |
Static Protected Attributes | |
| static constexpr std::array< rank_type, meta::detail::size_in_values_v< char_type > > | char_to_rank |
| Char to rank conversion table. | |
| static constexpr std::array< char_type, alphabet_size > | rank_to_char |
| Rank to char conversion table. | |
Related Functions | |
(Note that these are not member functions.) | |
| template<typename sequence_alphabet_type > | |
| masked (sequence_alphabet_type &&, mask const &) -> masked< std::decay_t< sequence_alphabet_type > > | |
| Type deduction guide enables usage of masked without specifying template args. | |
A template for composite alphabets that differentiate between upper and lower case characters.
.
| sequence_alphabet_t | Type of the first letter; must satisfy bio::alphabet::writable_alphabet and std::regular. |
The masked composite is an alphabet tuple over the given alphabet and bio::alphabet::mask. It creates distinct states for upper and lower case letters, thus allowing to differentiate between symbols in masked regions and those outside. Otherwise, it models the behaviour of the given alphabet.
|
inlineconstexprnoexceptinherited |
Assign from a character, implicitly converts invalid characters.
| c | The character to be assigned. |
Provides an implementation for bio::alphabet::assign_char_to, required to model bio::alphabet::alphabet.
Constant.
Guaranteed not to throw.
|
inlineconstexprnoexceptinherited |
Assign from a numeric value.
| c | The rank to be assigned. |
Provides an implementation for bio::alphabet::assign_rank_to, required to model bio::alphabet::semialphabet.
Constant.
Guaranteed not to throw.
|
inlineconstexprnoexceptinherited |
Implicit cast to a single letter. Works only if the type is unique in the type list.
|
inlineconstexprnoexceptinherited |
Return the letter's numeric value (rank in the alphabet).
Provides an implementation for bio::alphabet::to_rank, required to model bio::alphabet::semialphabet.
Constant.
Guaranteed not to throw.
|
staticconstexprprotected |
Char to rank conversion table.
|
staticconstexprprotected |
Rank to char conversion table.