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

Provides algorithms for meta programming, parameter packs and seqan3::type_list. More...

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

Go to the source code of this file.

Classes

struct  seqan3::detail::type_list_expander< type_list_t< args_t... > >
 Helper class to invoke a meta algorithm on the types contained in a seqan3::type_list. More...
 

Namespaces

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

Functions

template<typename type_list_t , typename unary_predicate_t >
requires template_specialisation_of<type_list_t, seqan3::type_list>
constexpr bool seqan3::detail::all_of (unary_predicate_t &&fn)
 Tests whether a given predicate evaluates to true for each type in a seqan3::type_list.
 
template<typename type_list_t , typename unary_function_t >
requires template_specialisation_of<type_list_t, seqan3::type_list>
constexpr void seqan3::detail::for_each (unary_function_t &&fn)
 Applies a function element wise to all types of a type list.
 

Detailed Description

Provides algorithms for meta programming, parameter packs and seqan3::type_list.

Author
Rene Rahn <rene.rahn AT fu-berlin.de>
Hide me