User profile: mbozzi

User info
User name:mbozzi
Bio:ESR's article /How To Ask Questions the Smart Way/ is the best guide to getting quick, effective help that I know of.
http://www.catb.org/esr/faqs/smart-questions.html

That document has substantial problems, but its content is mostly good.

Avoid the common trap of asking about potential solutions rather than your actual problem. Always provide context for the questions you ask.
http://xyproblem.info/

My opinions do not represent the position of my employer.
Statistical data
Occupation:Other
History
Joined:
Number of posts:3797
Latest posts:

event class and dynamic bind paramaters
[tt]bind_front[/tt] is C++20 but OP only has C++11. This is known since they don't have C++14's [tt...

Class with iteration capability like std::map
Referring back to JLBorges's code from above, OP noticed that [tt]for( auto& [n,str] : arr ) { /* .....

How to specify a concept that requires a const method?
Yes, because it checks for [tt]x.draw()[/tt] where [tt]x[/tt] has type [tt]T const[/tt]. I think ev...

Eigen library - references
See the documentation about working with block matrices: https://eigen.tuxfamily.org/dox/group__Tuto...

akgorithm to order modules according to dependencies
The relevant search term is "topological sorting" You could do something like this: [code]#include ...