Kristian wrote:
>
> It would be very nice if you could overload function templates as you
> can in C++. Here is what I mean:
>
> void f(T)(T val) {...}
>
> void f(int val) {...} //error: conflicts with the template function
>
> It would allow you to write special cases for types that need it.
void f(T)(T val) {}
void f()(int val) {}
Sean