SeqAn3  3.0.0
The Modern C++ library for sequence analysis.
seqan3::NucleotideAlphabet Interface Reference

A concept that indicates whether an alphabet represents nucleotides. More...

#include <seqan3/alphabet/nucleotide/concept.hpp>

+ Inheritance diagram for seqan3::NucleotideAlphabet:

Related Functions

(Note that these are not member functions.)

Requirements for std::StrictTotallyOrdered

You can expect these functions on all types that implement std::StrictTotallyOrdered.

bool operator< (type const &lhs, type const &rhs)
 Less-than, greater-than and -or-equal comparisons. More...
 
bool operator<= (type const &lhs, type const &rhs)
 Less-than, greater-than and -or-equal comparisons. More...
 
bool operator> (type const &lhs, type const &rhs)
 Less-than, greater-than and -or-equal comparisons. More...
 
bool operator>= (type const &lhs, type const &rhs)
 Less-than, greater-than and -or-equal comparisons. More...
 
Requirements for std::EqualityComparable

You can expect these functions on all types that implement std::Equality_comparable.

bool operator== (type const &lhs, type const &rhs)
 (In-)Equality comparison. More...
 
bool operator!= (type const &lhs, type const &rhs)
 (In-)Equality comparison. More...
 

Detailed Description

A concept that indicates whether an alphabet represents nucleotides.

In addition to the requirements for seqan3::Alphabet, the NucleotideAlphabet introduces a requirement for a complement function: seqan3::NucleotideAlphabet::complement.

Requirements

  1. t shall model seqan3::Alphabet
  2. seqan3::complement needs to be defined for objects of type t

See the documentation pages for the respective requirements.

Related types

If a given type t models this concept, the following types typically do so, as well:

  • t &
  • t const
  • t const &

The documentation for this interface was generated from the following file: