Loading

Paste #plqrwybxk

  1. //#include <memory>
  2. //#include "boost/shared_ptr.hpp"
  3.  
  4. #include <boost/lambda/lambda.hpp>
  5. #include <boost/lambda/bind.hpp>
  6.  
  7. using namespace boost::lambda;
  8. using namespace std;
  9.  
  10. int main()
  11. {
  12.     vector<vector<string> > as;
  13.     max_element(as.begin(), as.end(), bind(&vector<string>::size, _1) < bind(&vector<string>::size, _2));
  14. }

Comments