Created
May 17, 2015 15:49
-
-
Save Gibgezr/259e7eee1ef31f3c53c7 to your computer and use it in GitHub Desktop.
C++ snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //lamda sort a vector | |
| #include <algorithm> | |
| std::sort(vect.begin(), vect.end(), [](ObjectType A, ObjectType B) -> bool{ return (A.id < B.id); }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment