 |
SeqAn3
3.0.1
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
62 constexpr
rna4() noexcept =
default;
63 constexpr
rna4(
rna4 const &) noexcept =
default;
64 constexpr
rna4(
rna4 &&) noexcept =
default;
67 ~rna4() noexcept =
default;
73 #if SEQAN3_WORKAROUND_GCC_90897
120 constexpr
rna4 operator""_rna4(
char const c) noexcept
139 for (
size_t i = 0; i < n; ++i)
140 r[i].assign_char(s[i]);
constexpr rna4 & operator=(rna4 const &) noexcept=default
Defaulted.
Provides seqan3::dna4, container aliases and string literals.
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.
Definition: alphabet_base.hpp:174
The four letter RNA alphabet of A,C,G,U.
Definition: rna4.hpp:46
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:40
constexpr rna4(dna4 const &r) noexcept
Allow implicit construction from dna/rna of the same size.
Definition: rna4.hpp:72
constexpr derived_type & assign_char(char_type const c) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:140
constexpr rna4() noexcept=default
Defaulted.
The four letter DNA alphabet of A,C,G,T.
Definition: dna4.hpp:47
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:36
Provides seqan3::nucleotide_base.
std::conditional_t< std::same_as< char, void >, char, char > char_type
The char representation; conditional needed to make semi alphabet definitions legal.
Definition: alphabet_base.hpp:60
~rna4() noexcept=default
Defaulted.
constexpr rna4 & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:165