Why does nobody seem to use tuples in C++, either the Boost Tuple Library or the standard library for TR1? I have read a lot of C++ code, and very rarely do I see the use of tup
I have a feeling that many use Boost.Any and Boost.Variant (with some engineering) instead of Boost.Tuple.