Created
March 7, 2018 20:31
-
-
Save lucaslugao/746748b9f2e890479f863c86e2b069c5 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<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