SeqAn3 3.4.0-rc.1
The Modern C++ library for sequence analysis.
Loading...
Searching...
No Matches
transformation_trait_or.hpp File Reference

Provides seqan3::detail::transformation_trait_or. More...

+ Include dependency graph for transformation_trait_or.hpp:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  seqan3
 The main SeqAn3 namespace.
 
namespace  seqan3::detail
 The internal SeqAn3 namespace.
 

Typedefs

template<typename type_t , typename default_t >
using seqan3::detail::transformation_trait_or = std::conditional_t< transformation_trait< type_t >, type_t, std::type_identity< default_t > >
 This gives a fallback type if type_t::type is not defined.
 
template<typename type_t , typename default_t >
using seqan3::detail::transformation_trait_or_t = typename transformation_trait_or< type_t, default_t >::type
 Helper type of seqan3::detail::transformation_trait_or (transformation_trait shortcut).
 

Detailed Description

Provides seqan3::detail::transformation_trait_or.

Author
Marcel Ehrhardt <marcel.ehrhardt AT fu-berlin.de>
Hide me