Does anyone know if in upcoming C++ standard function templates can be partially specialized?
Thanks.
views:
81answers:
1
+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
2010-09-15 10:53:42
It was my understanding that this is in C++0x.
DeadMG
2010-09-15 10:57:26
@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
2010-09-15 11:08:24
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
2010-09-15 11:20:20
@James: thanks for the update.
Mike Seymour
2010-09-15 11:33:20