1
vote
5answers
146 views
Most efficient way to store a mixed collection of doubles and ints
I need to store a collection of ints and doubles (representing nominal and real valued data) in c++. I could obviously store them all in a std::vector<double> , but this feel …
1
vote
1answer
236 views
Boost.Any vs. Boost.Variant
Hello,
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 sto …
2
votes
1answer
126 views
Is it safe to serialize a raw boost::variant?
boost::variant claims that it is a value type. Does this mean that it's safe to simply write out the raw representation of a boost::variant and load it back later, as long as it on …
2
votes
1answer
227 views
“Cannot convert parameter” using boost::variant iterator
I want to create a function that can take different types of iterators which store the same type of object:
The first is a std::map containing shared_ptr<Foo> (typedef-ed as …
4
votes
3answers
205 views
Why does boost::variant not provide operator !=
Given two identical boost::variant types a and b, the expression ( a == b ) is permitted.
However ( a != b ) seems to be undefined. Why is this?
