on Is preloading/caching data before the actual method call an (anti)pattern? · c/no_stupid_questions · 3 pts · 2ySounds like Command-Query Separation (CQS) It states that every method should either be a command that performs an action, or a query that returns data to the caller, but not both.
Sounds like Command-Query Separation (CQS)