13 #ifndef TINYMPL_AT_HPP
14 #define TINYMPL_AT_HPP
16 #include <tinympl/variadic/at.hpp>
17 #include <tinympl/as_sequence.hpp>
18 #include <tinympl/sequence.hpp>
29 template<std::
size_t I,
class Sequence>
30 struct at :
at <I, as_sequence_t<Sequence> > {};
32 template<std::size_t I,
class ... Args>
37 #endif // TINYMPL_AT_HPP
Get the i-th element of a sequence.
Definition: at.hpp:30
Extract the i-th element of a variadic template.
Definition: at.hpp:27
The main sequence type.
Definition: sequence.hpp:28