SeqAn3
char.hpp File Reference

Provides alphabet adaptations for standard char types. More...

#include <limits>
#include <meta/meta.hpp>
#include <seqan3/alphabet/concept_pre.hpp>
#include <seqan3/core/detail/int_types.hpp>
Include dependency graph for char.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  seqan3::alphabet_size< char_type >
 Specialisation of seqan3::alphabet_size that delegates for char types. More...
 
struct  seqan3::underlying_char< char_type >
 Specialisation of seqan3::underlying_char for char types. More...
 
struct  seqan3::underlying_rank< char_type >
 Specialisation of seqan3::underlying_rank for char types. More...
 

Namespaces

 seqan3
 The main SeqAn3 namespace.
 

Detailed Description

Provides alphabet adaptations for standard char types.

Author
Hannes Hauswedell <hannes.hauswedell AT fu-berlin.de>

This file provides function and metafunction overloads so that the following types fulfil the seqan3::alphabet_concept:

  • char
  • char16_t
  • char32_t

You will likely not use these interfaces directly, they are, however, very helpful for conversions between other alphabets and between other alphabets and characters.

Attention
  • Note that signed char and unsigned char are absent from the list, because of their type ambiguity with int8_t and uint8_t.