SeqAn3  3.0.1
The Modern C++ library for sequence analysis.
Concept

Additional concepts that are not specific to a SeqAn module. More...

+ Collaboration diagram for Concept:

Classes

interface  seqan3::arithmetic
 A type that satisfies std::is_arithmetic_v<t>. More...
 
interface  seqan3::builtin_character
 This concept encompasses exactly the types char, signed char, unsigned char, wchar_t, char16_t and char32_t. More...
 
interface  seqan3::explicitly_convertible_to
 Resolves to std::ranges::explicitly_convertible_to<type1, type2>(). More...
 
interface  seqan3::floating_point
 An arithmetic type that also satisfies std::is_floating_point_v<t>. More...
 
interface  seqan3::implicitly_convertible_to
 Resolves to std::ranges::implicitly_convertible_to<type1, type2>(). More...
 
interface  seqan3::standard_layout
 Resolves to std::is_standard_layout_v<t>. More...
 
interface  seqan3::trivial
 A type that satisfies seqan3::trivially_copyable and seqan3::trivially_destructible. More...
 
interface  seqan3::trivially_copyable
 A type that satisfies std::is_trivially_copyable_v<t>. More...
 
interface  seqan3::trivially_destructible
 A type that satisfies std::is_trivially_destructible_v<t>. More...
 
interface  seqan3::weakly_assignable_from
 Resolves to std::is_assignable_v<t>. More...
 

Detailed Description

Additional concepts that are not specific to a SeqAn module.

Todo:
write me.