Templa 0.0.1-alpha
C++ Metaprogramming Utilities
Loading...
Searching...
No Matches
templa::convert::convert_to_tuple< Ts > Struct Template Reference

Converts a pack of types into a std::tuple of those types. More...

#include <convert.hpp>

Inheritance diagram for templa::convert::convert_to_tuple< Ts >:

Detailed Description

template<typename... Ts>
struct templa::convert::convert_to_tuple< Ts >

Converts a pack of types into a std::tuple of those types.

Template Parameters
TsParameter pack of types to convert.

Usage:

using T = convert_to_tuple<int, float, double>::type; // std::tuple<int, float, double>
Converts a pack of types into a std::tuple of those types.
Definition convert.hpp:64

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