Hi,

I'm having difficulty coming up with a solution for what I am trying to achieve and was hoping maybe someone had encountered this kind of situation before.

I am attempting to test a feature for various sorts of types, e.g. int, double, float, types that I define, etc. To do so I have created a function template that will take this type and then perform a certain operation.

Ideally, what I would like to do is loop through the various types I have defined and pass them into this function template. But, I'm not sure what kind of container or list to use to hold these types.

Any ideas?

Thanks a lot for any help at all.