Skip to content

Instantly share code, notes, and snippets.

@stryku
Created February 26, 2017 18:49
Show Gist options
  • Save stryku/58d025a5c241413c9a56721b0790a674 to your computer and use it in GitHub Desktop.
Save stryku/58d025a5c241413c9a56721b0790a674 to your computer and use it in GitHub Desktop.
template <size_t count, size_t to_drop, size_t ...left>
struct values_drop_impl<count, false, values_container<to_drop, left...>>
{
using type = typename values_drop_impl<count-1,
count == 1,
values_container<left...>>::type;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment