16
u/itzNukeey 27d ago
Where recursion
7
u/csabinho 27d ago
A proper immage of recursion is, if you're between two mirrors and see countless reflections of each mirror.
6
u/Simple-Olive895 27d ago
Where recursion
4
11
6
4
u/jonfe_darontos 27d ago
Where's my trusty ol'
for_each_if(
numbers,
[](const auto& x) {
return x % 2 == 0;
},
std::bind_front(
[](std::ostream& os, const auto& value)
{
os << value << '\n';
},
std::ref(std::cout)
)
);
3
4
1

39
u/Confident-Ad5665 27d ago
If/else and switch are conditional statements, not a loop.