SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
Concept

Provides various general purpose concepts. More...

+ Collaboration diagram for Concept:

Classes

interface  arithmetic
 A type that satisfies std::is_arithmetic_v<t>. More...
 
interface  builtin_character
 This concept encompasses exactly the types char, signed char, unsigned char, wchar_t, char16_t and char32_t. More...
 
interface  explicitly_convertible_to
 Checks whether from can be explicitly converted to to. More...
 
interface  implicitly_convertible_to
 Checks whether from can be implicityly converted to to. More...
 
interface  standard_layout
 Resolves to std::is_standard_layout_v<t>. More...
 
interface  trivial
 A type that satisfies seqan3::trivially_copyable and seqan3::trivially_destructible. More...
 
interface  trivially_copyable
 A type that satisfies std::is_trivially_copyable_v<t>. More...
 
interface  trivially_destructible
 A type that satisfies std::is_trivially_destructible_v<t>. More...
 
interface  weakly_assignable_from
 Resolves to std::is_assignable_v<t>. More...
 

Detailed Description

Provides various general purpose concepts.

See also
Utility
Hide me