4
votes
Deciphering C++ template error messages
Some compilers give better messages than others. What compiler are you using? Having said that, they are all pretty bad. C++0X will fix most of this problem (see …
3
votes
C++ Template Ambiguity
AFAIK it would be compiled as new A<b>(c) > d. This is the only reasonable way to parse it IMHO. If the parser can't assume under normal circumstances a > end a template argument, t …
1
vote
Does anyone use template metaprogramming in real life?
Yes I have, mostly to do some things that resemble duck-typing when I was wrapping a legacy API in a more modern C++ interface.
…
7
votes
C++ Restrict Template Function
#include <boost/utility/enable_if.hpp>
#include <boost/type_traits/is_arithmetic.hpp>
template<typename T> typename boost::enable_if<typename boost::is_arithmetic<T …
3
votes
Coercing template class with operator T* when passing as T* argument of a function template
GCC is correct. In template arguments only exact matches are considered, type conversions are not. This is because otherwise an infinite (or at least exponential) amount of conversions could have t …
0
votes
Can initialization list in constructors be used in template classes?
Of course, why would it not be?
…
13
votes
typedefs for templated classes?
No, that isn't possible currently. It will be made possible in C++0X AFAIK.
The best I can think of is
template<typename T> struct LongCollection {
typedef std::v …
0
votes
Possible for C++ template to check for a function’s existence?
No, that isn't possible. SFINEA can detect for missing subtypes, but not for missing methods.
ETA: it seems Nicola found a way to do it, but I think that's not portable.
…
