Skip to content

Instantly share code, notes, and snippets.

@lucaslugao
Created March 7, 2018 20:31
Show Gist options
  • Save lucaslugao/746748b9f2e890479f863c86e2b069c5 to your computer and use it in GitHub Desktop.
Save lucaslugao/746748b9f2e890479f863c86e2b069c5 to your computer and use it in GitHub Desktop.
template<typename T>
auto DummyFirstArgument(T&& f)
{
return [&](auto dummy, auto ...x){ return f(x...); };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment