is there a way to know the compiler instantiated code for a template function or a class in C++
Assume I have the following piece of code
template &l
If your looking for the equivalent C++ code then no. The compiler never generates it. It's much faster for the compiler to generate it's intermediate representation straight off than to generate c++ first.