Your name is one of the most important parts of your identity. It is the same with code. Each module, class, function, and variable has a unique identity and fulfills…
Tag: Software Architecture
Const Correctness
Const correctness refers to the correct use of const to indicate whether a variable or parameter shall be modified or not. Other languages may inherently make variables immutable or const…
Software Readability
More time is spent reading software than writing it, so software (and most other forms of writing) need to be optimized for readability. Readability is subjective. There is a term…