Re: Specializing template members for pointer types.
On Dec 22, 12:39 pm, Andrey Tarasevich <andreytarasev...@hotmail.com>
wrote:
joe wrote:
Or likewise use these:
template<typename T>
struct is_pointer
{
operator bool(){return false;}
};
struct is_pointer<T*>
{
operator bool(){return true;}
};
Then use:
if(is_pointer<T>()), wherever you like.
The deeper you hide the compile-time constant ('true' or 'false' in this
case), the greater is the chance that the compiler won't be able to
unroll the whole thing and figure out what part of the code can be
thrown out.
Much of the value of 'if' based solution suggested by Michael is in the
fact that the conditional expression in the 'if' is an immediately
obvious compile-time constant, which will make virtually any compiler to
remove the condition checking entirely and generate code only for the
relevant branch of the former 'if'.
What you suggest is more "risky" in this regard. I won't be surprised to
discover that some compilers do actually generate a full-blown condition
checking and code for both branches if the 'if' in response to your code.
You are right of course; I guess I've been spoiled in this regard, but
I suspect most decent compilers will make this a compile time decision
as gcc does. All compilers must decide at compile-time which of the
two functions to call, so the only wiggle room is whether the compiler
decides to inline the "return true" or "return false". I suspect any
compiler worth 1 cent will inline in this case.
Thanks,
Joe Cook