refl-cpp
refl::trait::skip< N, type_list< Ts... > > Struct Template Reference

Skips the first N types in the provided type_list. More...

#include <refl.hpp>

Detailed Description

template<size_t N, typename... Ts>
struct refl::trait::skip< N, type_list< Ts... > >

Skips the first N types in the provided type_list.

Provides a member typedef equivalent to the resuling type_list.

typename skip<1, type_list<int, float, double>>::type -> type_list<float, double>
typename skip<0, type_list<int, float, double>>::type -> type_list<int, float, double>

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