Saturday, 14 September 2013

Private methods vs Lambda in C++

Private methods vs Lambda in C++

My question refers to:
Using a lambda expression versus a private method
Now that lambda functors are part of C++, they could be used to unclutter
a class' interface. How does lambda use vs private method use compare in
C++? Do there exist better alternatives to unclutter class interfaces?

No comments:

Post a Comment