13 #ifndef TINYMPL_COPY_HPP
14 #define TINYMPL_COPY_HPP
16 #include <tinympl/variadic/copy.hpp>
17 #include <tinympl/as_sequence.hpp>
18 #include <tinympl/sequence.hpp>
33 template<
class SequenceIn,
34 template<
class ...>
class Out = as_sequence<SequenceIn>::template rebind>
35 struct copy :
copy<as_sequence_t<SequenceIn>, Out> {};
37 template<
template<
class ...>
class Out,
class ... Args>
42 #endif // TINYMPL_COPY_HPP
Copy the elements from the input sequence to the output sequence.
Definition: copy.hpp:31
Copy the elements from the input sequence to the output sequence.
Definition: copy.hpp:35
The main sequence type.
Definition: sequence.hpp:28