vote up 2 vote down star
1

I've read the description of "functionoids" here. They look like a poor-man's version of Boost::function and Boost::bind. Am I missing something? Is there a good reason to use them if you're already using Boost?

flag

3 Answers

vote up 2 vote down check

No.

Alternatively see the FQA answer here.

link|flag
vote up 1 vote down

Check this article about closure that might help you.

link|flag
vote up 2 vote down

My vote goes to tr1::function.

Functors or functionoids represent the base from which tr1/boost::function has evolved. The limit with common-interface functors is that they break the OO-paradigm since they represent different types and can only passed to template functions (unless you provide a base class from which they derive from).

Indeed by means of the type erasure technique tr1::function overcomes this limit: They are best used to implement dynamic strategy classes.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.