Last active
August 30, 2016 11:45
-
-
Save EricWF/c45c0ae7a7e59284426ef22904930e15 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template<typename... Elements> struct variadic_holder {}; | |
template<typename Holder1, typename Holder2> struct variadic_concat; | |
template<template<class...> class Holder1, typename... Elements1, template <class...> class Holder2, typename... Elements2> | |
struct variadic_concat<Holder1<Elements1...>, Holder2<Elements2...>> | |
{}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment