Tagged Questions

10
votes
6answers
467 views

What are some other languages that support “partial specialization”?

Partial template specialization is one of the most important concepts for generic programming in C++. For example: to implement a generic swap function: template <typename T> void swap(T ...