Race Result Details |
Racer | Jay (kamikamigod) |
Race Number | 2 |
Date | Tue, 5 Dec 2023 15:42:44 |
Universe | code |
Speed |
67 WPM
![]() |
Accuracy | 95.1% |
Rank | 1st 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)
|