sparrow 1.0.0
Loading...
Searching...
No Matches
sparrow::mpl::typelist< T > Struct Template Reference

A sequence of types used for metaprogramming operations. More...

#include <mp_utils.hpp>

Detailed Description

template<class... T>
struct sparrow::mpl::typelist< T >

A sequence of types used for metaprogramming operations.

This class template serves as a container for type lists in template metaprogramming contexts. It provides the foundation for type-level algorithms and operations.

Template Parameters
TPack of types to store in the list
Postcondition
Stores the given types for metaprogramming operations
Can be used with type algorithms like append, transform, etc.
using int_float_list = typelist<int, float>;
using empty_list = typelist<>;
A sequence of types used for metaprogramming operations.
Definition mp_utils.hpp:123

Definition at line 122 of file mp_utils.hpp.


The documentation for this struct was generated from the following file: