How to get the no of elements in a tuple. So that I can do the below.
for(int i=0;i<tuple.count();++i)
cout << std::get<i>(tuple) << endl;
EDIT: My question is tuple size, not iterate over it's members. That is another subject. So the core point is getting tuple size. Iterating over is extra. So it is not duplicate of the question you mentioned.