SeqAn3 3.4.0-rc.4
The Modern C++ library for sequence analysis.
|
Provides utilities for modifying characters. More...
#include <array>
#include <seqan3/utility/concept.hpp>
#include <seqan3/utility/detail/integer_traits.hpp>
Go to the source code of this file.
Namespaces | |
namespace | seqan3 |
The main SeqAn3 namespace. | |
namespace | seqan3::detail |
The internal SeqAn3 namespace. | |
Functions | |
Operations on characters | |
template<builtin_character char_type> | |
constexpr char_type | seqan3::to_lower (char_type const c) noexcept |
Converts 'A'-'Z' to 'a'-'z' respectively; other characters are returned as is. | |
template<builtin_character char_type> | |
constexpr char_type | seqan3::to_upper (char_type const c) noexcept |
Converts 'a'-'z' to 'A'-'Z' respectively; other characters are returned as is. | |
Variables | |
template<typename char_type > | |
constexpr std::array< char_type, detail::size_in_values_v< char_type > > | seqan3::detail::to_lower_table |
Auxiliary table for seqan3::to_lower. | |
template<typename char_type > | |
constexpr std::array< char_type, detail::size_in_values_v< char_type > > | seqan3::detail::to_upper_table |
Auxiliary table for seqan3::to_upper. | |
Provides utilities for modifying characters.