If you need more than 3 levels of indentation, you're screwed?
- by jokoon
Per the Linux kernel coding style document:
The answer to that is that if you need more than 3 levels of
indentation, you're screwed anyway, and should fix your program.
What can I deduce from this quote? On top of the fact that too long methods are hard to maintain, are they hard or impossible to optimize for the compiler?
I don't…