A concept that indicates whether a writable alphabet represents quality scores. More...
#include <seqan3/alphabet/quality/concept.hpp>
Inheritance diagram for writable_quality_alphabet:Related Functions | |
(Note that these are not member functions.) | |
Requirements for std::totally_ordered | |
You can expect these functions on all types that implement std::totally_ordered. | |
| 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::equality_comparable | |
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... | |
A concept that indicates whether a writable alphabet represents quality scores.
In addition to the requirements for seqan3::writable_alphabet, the seqan3::writable_quality_alphabet introduces the requirements of seqan3::quality_alphabet.
t shall model seqan3::writable_alphabett shall model seqan3::quality_alphabettSee the documentation pages for the respective requirements.
If a given type t models this concept, the following types typically do so, as well:
t &const-qualified types on the other hand are not assignable.