Lately I've been getting very excited about the support for lambdas in VC2010. I'm slowly starting to grasp the full potential this feature has in transforming C++ into something alot better.
But then I realized that this potential greatly depends on main stream support of lambdas in day to day libraries like boost and QT.
Does anyone know if there are plans to extend these libraries with the new features of C++0x?
lambdas practically replace the need for boost::lambda and everything in boost that interacts with it.
QT could add support for lambdas in all of their container and maybe even as an alternative way of defining SLOTs

boost::bindtargets another thing not being replaced by lambdas.std::bindwill do its job of binding functions. Instead, lambdas will partially replace functionality inboost::lambda(and its successor, boost::phoenix, afaik). What lambdas currently can't do is the polymorphism ofboost::lambda. The ability to create functions that work on any argument type:_1++increments any argument type, while[](int &a) { a++; }can only increment int. I heard now that concepts are out of C++, polymorphic lambdas are an option again. – Johannes Schaub - litb Aug 3 at 16:40requires Blah<T> [](T t) { ... }or something like this to make the lambda'soperator()template constrained. Another problem could be that in a constrained template you can only call other constrained templates to allow a template definition to be type-checked. So with a lambda having a simple unconstained templatedoperator(), you couldn't use that in a constrained template like this:template<Identity T> void f(T t) { ([](u) { ... })(t); }. – Johannes Schaub - litb Aug 3 at 18:50