Tagged Questions

1
vote
5answers
271 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 feels a bit wrong and ...