Testing Private Functions

Not true, there is a difference, it used to be that private functions took longer to compile due to more optimizations being applied, it has changed now to public functions being slower as they have to be exported.

I’m not sure that all the optimizations that is done with private functions are possible to do to public or even anonymous.

But I agree that in the end this is all about improving the compiler as it shouldn’t be like this.