roar
Loading...
Searching...
No Matches
first_type.hpp
Go to the documentation of this file.
1#pragma once
2
3namespace Roar::Detail
4{
11 template <typename T, typename... Args>
12 struct FirstType
13 {
14 using type = T;
15 };
16
17 template <typename T, typename... Args>
18 using FirstType_t = typename FirstType<T, Args...>::type;
19}
Definition range_file_body.hpp:18
typename FirstType< T, Args... >::type FirstType_t
Definition first_type.hpp:18
Returns the first type of a parameter pack.
Definition first_type.hpp:13
T type
Definition first_type.hpp:14