A semi-alphabet that type erases all other semi-alphabets of the same size. More...
#include <bio/alphabet/composite/semialphabet_any.hpp>
Public Member Functions | |
template<meta::different_from< semialphabet_any > other_alph_t> requires (semialphabet<other_alph_t> && (size<other_alph_t> == size_) && std::regular<other_alph_t>) | |
operator other_alph_t () const | |
Enable conversion of semialphabet_any into other (semi-)alphabet of the same size. | |
Constructors, destructor and assignment | |
constexpr | semialphabet_any () noexcept=default |
Defaulted. | |
constexpr | semialphabet_any (semialphabet_any const &) noexcept=default |
Defaulted. | |
constexpr | semialphabet_any (semialphabet_any &&) noexcept=default |
Defaulted. | |
constexpr semialphabet_any & | operator= (semialphabet_any const &) noexcept=default |
Defaulted. | |
constexpr semialphabet_any & | operator= (semialphabet_any &&) noexcept=default |
Defaulted. | |
~semialphabet_any () noexcept=default | |
Defaulted. | |
template<meta::different_from< semialphabet_any > other_alph_t> requires (semialphabet<other_alph_t> && size<other_alph_t> == size_) | |
semialphabet_any (other_alph_t const other) | |
Construct semialphabet_any from alphabet of the same size. | |
Read functions | |
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). | |
Write functions | |
constexpr semialphabet_any< size_ > & | assign_char (char_type const c) noexcept |
Assign from a character, implicitly converts invalid characters. | |
constexpr semialphabet_any< size_ > & | assign_rank (rank_type const c) noexcept |
Assign from a numeric value. | |
Static Public Attributes | |
static constexpr size_t | alphabet_size |
The size of the alphabet, i.e. the number of different values it can take. | |
Protected Types | |
Member types | |
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 = meta::detail::min_viable_uint_t< size - 1 > |
The type of the alphabet when represented as a number (e.g. via to_rank()). | |
A semi-alphabet that type erases all other semi-alphabets of the same size.
This alphabet provides a generic representation for different alphabets of the same size by erasing the type of the alphabet it is constructed from. This enables the usage of a single type although assigning different alphabets. The semialphabet_any can also be converted to any other (semi-)alphabet of the same size. It is therefore possible to convert the semialphabet_any into an alphabet type that is not the original alphabet type. However, this should either be avoided or used with care as no warnings are given when attempting to convert the semialphabet_any into a type that is not comparable to the original alphabet type. The main advantage of using this data structure is to reduce instantiation of templates when using multiple alphabets of the same size and either their character representation is not important or they are reified at a later point in the program.
|
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 |
Return the letter as a character of char_type.
Provides an implementation for bio::alphabet::to_char, required to model bio::alphabet::alphabet.
Constant.
Guaranteed not to throw.
|
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.