Tagged Questions

12
votes
1answer
5k views

Boost.Any vs. Boost.Variant

I'm having trouble choosing between Boost.Any and Boost.Variant. When should I use each one? What are the advantages and disadvantages of each? I am basically looking to store some states from ...
10
votes
3answers
780 views

How do boost::variant and boost::any work?

How do variant and any from the boost library work internally? In a project I am working on, I currently use a tagged union. I want to use something else, because unions in C++ don't let you use ...
1
vote
1answer
65 views

C++ container of any/variant each element having unchanging type

I am using std::map<const char*, boost::any> to store my library's settings. Each setting only uses a single underlying value type and I want to enforce this during configuration calls to set() ...