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.
There are no 5 loops, or loops in general. Linq is a bunch of enumerators that may accept some things piped in and
yield
s some results one by one. So even if you insist on claiming there are "loops", there's only 1 of them.But watch out for the classic rookie fallacy - assuming that having one loop where you do five things per iteration is innately superior to having five loops where you do one thing per iteration.