Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Ryan Haining

Ryan Haining

Ryan Haining has asked 83 questions and find answers to 108 problems.

Stats

4.5k
EtPoint
1.6k
Vote count
83
questions
108
answers

About

cppitertools

writing python in c++ for the greater good

for (auto&& i : range(1, 10, 2)) { ... }
for (auto&& [i, e] : enumerate(vec)) { ... }
for (auto&& n : imap([] (int i) { return i*i; }, vec)) { ... }