January 26, 2019
Command-Query Separation is a guideline to help you write clean, reusable code. It helps you mentally separate responsibility in functions.
It states that all functions should fall into one of two categories (but not both):
“Asking a question should not change the answer.”
In other words, a function that does something to the state of the application should not have a return value.
Creating a function which calls a command and a query is not a violation of this concept, though it should not have a return value (since anything that wraps a command is also a command).
There are a few main reasons why this separation is valuable:
Sometimes there’s a grey area where convenience can be drawn from combining the two (for example, array’s pop
functionality). However, even in that case, explicitly drawing the difference between the command and the query is easy, yields readability benefits, and prevents easy-to-make mistakes from happening (in-place algorithms such as pop
are notorious for causing bugs). Therefore, sticking to the command-query separation is recommended where possible – use it as a guideline, not a rule.