Skip to content

Instantly share code, notes, and snippets.

@zhangyuchi
Created November 18, 2014 10:10
Show Gist options
  • Save zhangyuchi/45267fa408b097ae9f9d to your computer and use it in GitHub Desktop.
Save zhangyuchi/45267fa408b097ae9f9d to your computer and use it in GitHub Desktop.
c++14 lambda auto params
auto derefLess = // C++14 comparison
[](const auto& p1, // function for
const auto& p2) // values pointed
{ return *p1 < *p2; }; // to by anything
// pointer-like
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment