Say I have:
typedef boost::variant<int, float, std::string> moog;
Given an instance of moog
I can get the .which()
for its type, e.g.:
moog foo = ...;
foo.which(); //0 for int, 1 for float, 2 for std::string
What's the best way to get the .which()
given the type itself? e.g. something like:
moog.MAGIC<int>(); // 0
moog.MAGIC<float>(); // 1
moog.MAGIC<std::string>(); // 2
I figure I can instantiate a moog
and do it that way (untested, example only):
template <class Variant, class Which>
size_t MAGIC() {
Which w;
Variant foo = w;
return foo.which();
}
MAGIC<moog, int>(); // 0
MAGIC<moog, float>(); // 1
MAGIC<moog, std::string>(); // 2
However, this is clunky as it requires instantiating two objects. It also won't work for classes without a default constructor.
If you can use C++11:
Usage:
Demo.