Tagged Questions
The boost-functional tag has no wiki summary.
3
votes
4answers
458 views
Is it possible to create a C++ factory system that can create an instance of any “registered” object type, regardless of inheritance?
I've spent my entire day researching this topic, so it is with some scattered knowledge on the topic that i come to you with this inquiry. Please allow me to describe what I am attempting to ...
3
votes
1answer
270 views
boost lambda collection size evaluation
I have a function of the form:
void DoSomething(const boost::function<bool ()>& condition, other stuff);
This function does some work and returns only when the condition is true. The ...
0
votes
1answer
103 views
what's the benefit of Boost.Functional in comparison with Boost.Bind?
I've never used Boost.Functional, only briefly read its documentation. Looks like it's an improvement to Standard <functional> header.
An example on the main page of Boost.Functional (Usage ...