92 constexpr
rna15 & operator=(
rna15 const &) =
default;
93 constexpr
rna15 & operator=(
rna15 &&) =
default;
129 static constexpr std::array<rank_type, 256> char_to_rank = dna15::char_to_rank;
132 static const std::array<rna15, value_size> complement_table;
155 constexpr
rna15 operator""_rna15(
char const c) noexcept
174 for (
size_t i = 0; i < n; ++i)
185 constexpr std::array<rna15, rna15::value_size> rna15::complement_table
char char_type
The type of the alphabet when converted to char (e.g. via to_char()).
Definition: alphabet_base.hpp:87
alphabet_concept && assign_char(alphabet_concept &&alph, char_type const chr)
Returns the alphabet letter's value in character representation.
The 15 letter DNA alphabet, containing all IUPAC smybols minus the gap.
Definition: dna15.hpp:73
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:58
constexpr rna15(dna15 const &r) noexcept
Allow implicit construction from dna/rna of the same size.
Definition: rna15.hpp:99
constexpr rna15 & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:189
static detail::min_viable_uint_t< size > constexpr value_size
The size of the alphabet, i.e. the number of different values it can take.
Definition: alphabet_base.hpp:198
Provides seqan3::nucleotide_base.
The 15 letter RNA alphabet, containing all IUPAC smybols minus the gap.
Definition: rna15.hpp:73
std::vector< rna15 > rna15_vector
Alias for an std::vector of seqan3::rna15.
Definition: rna15.hpp:141
Contains seqan3::dna15, container aliases and string literals.
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:65