Skip to content

Instantly share code, notes, and snippets.

@stryku
Last active March 26, 2017 18:13
Show Gist options
  • Save stryku/0fe62f1aa8359775781b4d411c1a9455 to your computer and use it in GitHub Desktop.
Save stryku/0fe62f1aa8359775781b4d411c1a9455 to your computer and use it in GitHub Desktop.
template <typename type, typename ...types>
constexpr auto is_type_in_v = ((std::is_same<type, types>::value) || ...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment