Hi all,
I've written a function template. say
template <class T>
fn (T var) { ... }
Is there any way, from within the function, can we check what type of
argument we've passed on to the function (double, float etc) ??
Thanks in advance,
Surya
I've written a function template. say
template <class T>
fn (T var) { ... }
Is there any way, from within the function, can we check what type of
argument we've passed on to the function (double, float etc) ??
Thanks in advance,
Surya
Comment