Race Result Details |
| Racer | https://tinyurl.com/polash97 (wrongpassword) |
| Race Number | 1 |
| Date | Thu, 7 Dec 2023 6:48:56 |
| Universe | code |
| Speed |
26 WPM
Try to beat?
|
| Accuracy | 91.6% |
| Rank | 2nd place (out of 2) |
Text typed:
|
template<typename ...Args> bool all(Args ...args) { return (... && args); } bool b = all(true, true, true, false); // Within the instantiation of all, the returned expression expands to ((true && true) && true) && false, which evaluates to false.
— (software)
by C++ Committee
(see stats)
|
