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
A cynical answer is that many people program in C++, but do not understand and/or use the higher level functionality. Sometimes it is because they are not allowed, but many simply do not try (or even understand).
As a non-boost example: how many folks use functionality found in
?
In other words, many C++ programmers are simply C programmers using C++ compilers, and perhaps std::vector
and std::list
. That is one reason why the use of boost::tuple
is not more common.