 |
SeqAn3
3.0.2
The Modern C++ library for sequence analysis.
|
|
Go to the documentation of this file.
62 constexpr
rna5() noexcept = default;
63 constexpr
rna5(
rna5 const &) noexcept = default;
65 constexpr
rna5 & operator=(
rna5 const &) noexcept = default;
66 constexpr
rna5 & operator=(
rna5 &&) noexcept = default;
67 ~
rna5() noexcept = default;
73 #if SEQAN3_WORKAROUND_GCC_90897
121 constexpr
rna5 operator""_rna5(
char const c) noexcept
140 for (
size_t i = 0; i < n; ++i)
141 r[i].assign_char(s[i]);
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:176
A CRTP-base that refines seqan3::alphabet_base and is used by the nucleotides.
Definition: nucleotide_base.hpp:41
constexpr derived_type & assign_char(char_type const c) noexcept
Assign from a character, implicitly converts invalid characters.
Definition: alphabet_base.hpp:142
Provides seqan3::dna5, container aliases and string literals.
The main SeqAn3 namespace.
Definition: aligned_sequence_concept.hpp:29
The five letter RNA alphabet of A,C,G,U and the unknown character N.
Definition: rna5.hpp:47
Provides seqan3::nucleotide_base.
constexpr rna5() noexcept=default
Defaulted.
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:62
constexpr rna5 & assign_rank(rank_type const c) noexcept
Assign from a numeric value.
Definition: alphabet_base.hpp:167
The five letter DNA alphabet of A,C,G,T and the unknown character N.
Definition: dna5.hpp:49