Skip to content

Instantly share code, notes, and snippets.

@EricWF
Last active August 30, 2016 11:45
Show Gist options
  • Save EricWF/c45c0ae7a7e59284426ef22904930e15 to your computer and use it in GitHub Desktop.
Save EricWF/c45c0ae7a7e59284426ef22904930e15 to your computer and use it in GitHub Desktop.
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