Code Readability
Everything on SkillVeris tagged Code Readability — collected across the glossary, study notes, blog, and cheat sheets.
2 resources across 1 library
Interview Questions(2)
How Does the XOR Swap Technique Work, and Should You Actually Use It?
The XOR swap swaps two integer variables without a temporary variable by applying a = a ^ b, then b = a ^ b, then a = a ^ b, exploiting that XOR-ing a value wi…
What is the Telescoping Constructor Anti-Pattern?
The telescoping constructor anti-pattern is a design flaw where a class exposes an ever-growing chain of overloaded constructors, each adding one more paramete…