How to name functions - Uncle Bob
AI Summary
- Variables should have length proportional to their scope.
- Function naming rule: larger scope, shorter name.
- Large scope functions should have abstract, short names due to frequent calls.
- As function scope decreases, names get longer.
- Instance methods have slightly longer names.
- Private functions called by public ones have even longer names.
- Private functions called by other private functions have the longest names.
- Names lengthen as functions become more precise and specific.
- Function name length is inversely proportional to scope size.