Created
February 26, 2017 18:49
-
-
Save stryku/58d025a5c241413c9a56721b0790a674 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 <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