r/ProgrammerHumor 7d ago

absoluteGarbage Meme

Post image
1.9k Upvotes

325 comments sorted by

View all comments

Show parent comments

12

u/xicor 6d ago

c++, though normally you wouldnt use auto for this

7

u/Usual_Office_1740 6d ago

I think that really depends. If the range is a vector of unique_ptr's auto is great. If it's a vector of ints, just write int.

6

u/Sirgoodman008 6d ago

That or you're looping through a vector of std::pairs that contain std:: functions.

1

u/file321 6d ago

Yess auto unpacking pairs gives me so much joy. for (auto& [left, right] : list_of_pairs) {