Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Good explanation! I like the mention of how you can just use using std:: without having to worry about any issues.
Yes, but it's generally viewed as bad practice because of namespace pollution (everything inside the
std
namespace gets inside the global namespace, and that leads to all sorts of problems), and I personally prefer to be explicit and just manually type the namespace.As an alternative that won't polute the global namespace, you can use
using std::something;
, it does the same thing, but only to the objects you specify.u can use "using namespace std"... i have no words