Skip to content

Instantly share code, notes, and snippets.

@milesrout
Created March 11, 2016 00:03
Show Gist options
  • Save milesrout/219dd6207193a69792d0 to your computer and use it in GitHub Desktop.
Save milesrout/219dd6207193a69792d0 to your computer and use it in GitHub Desktop.
template<typename... Args>
bool all(Args... args) { return (... && args); }
bool b = all(true, true, true, false);
// within all(), the unary left fold expands as
// return ((true && true) && true) && false;
// b is false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment