"using" or not "using", that is the question!

“using” is a powerful command which can prevent us from repeatedly writing the namespace in front of the functions we need.
If on one hand this is useful and convenient, on the other side it can lead to “namespace clash”, that is two functions share the same and the computer can’t decide which one you are referring to.

So, be careful “using” it!

Some light reading from the master

Thank you, a very interesting reading!

I didn’t think you could use “using” that way!

Privacy & Terms