1 min readJul 27, 2019
The Law of Demeter is not very useful — it does nothing to address the issue of non-determinism, shared mutable state is still shared mutable state, no matter how you access or mutate that state. a().d()
is not much better than a().b().c().d()
. It simply sweeps the problem under the rug.