I\'d like to know how are tuple implemented in standard library for C++0x. I tried to read description in libstdc++ manual and then read template listing, but it\'s really hard
Implementing std::tuple is possible via variadic templates, that were introduced into the core language.
std::tuple
I know this is begging the question but it gives you a better search phrase to research.