tags:

views:

81

answers:

1

Does anyone know if in upcoming C++ standard function templates can be partially specialized?
Thanks.

+2  A: 

No, they can't. The draft C++0x standard has a section (14.5.5) on class template partial specialisations, but no mention of function template partial specialisations.

Mike Seymour
It was my understanding that this is in C++0x.
DeadMG
@DeadMG: Yes, I'm referring to the draft C++0x standard, http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3092.pdf
Mike Seymour
FYI: The latest draft is now [N3126](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3126.pdf) [Warning: Big PDF]. The answer isn't different in the latest draft.
James McNellis
@James: thanks for the update.
Mike Seymour