Skip to content

Instantly share code, notes, and snippets.

@bwoods
Created May 19, 2015 21:12
Show Gist options
  • Save bwoods/73a2d7be683a6a53105a to your computer and use it in GitHub Desktop.
Save bwoods/73a2d7be683a6a53105a to your computer and use it in GitHub Desktop.
template <typename... T, int... I>
static auto subtuple(std::tuple<T...>&& tuple, std::index_sequence<I...>) {
return std::make_tuple(std::get<I>(tuple)...);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment