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
The easiest is to inspect the generated assembly. You can get an assembly source by using -S flag for g++.