Skip to content

Instantly share code, notes, and snippets.

@SammyJames
Created February 23, 2017 21:54
Show Gist options
  • Save SammyJames/fb4850c98d46e778a5297515e697c982 to your computer and use it in GitHub Desktop.
Save SammyJames/fb4850c98d46e778a5297515e697c982 to your computer and use it in GitHub Desktop.
template <typename UnaryFunc>
decltype(auto) call_recurse(UnaryFunc&& aFunc)
{
return [=](auto&&... args) { return aFunc(aFunc, args...); };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment