ref
Boost::Lambda 中的 Boost::Phoenix 的等价物是什么?我在在线文档中找不到它。
#include <algorithm>
#include <string>
#include <boost/lambda/bind.hpp>
using namespace boost::lambda;
int main()
{
std::string a, b;
std::for_each(b.begin(), b.end(), ref(a) += _1); // how do I do this?
}
boost::ref
并且boost::lambda::var
似乎不起作用(显然,它们没有运算符重载)。