Earlier quoted context omitted.
people do not notice the complexity of anything that they have digested as normal ...which is why examples of "minimal complexity" code often provoke feelings of extreme unease and horror; one nice example is https://news.ycombinator.com/item?id=8558822 where the functionality:code ratio almost seems impossible at first glance. I have seen this with procedural programmers struggling with OO code. To be fair, a lot of…
To be fair, a lot of OO code tends toward overengineering and premature abstraction. And a lot of functional code tends towards unnecessary levels of indirection through higher order functions as a way of deferring responsibility for actual logic, or on the flipside insufficient abstraction leading to difficulty extending functionality. I've gone back and forth multiple times between functional practices and OO pract…
I think there is a strange kind of duality between OOP and FP. I think OOP passes structures of objects hidden behind interfaces, while the FP passes composed functions in other direction. So you can convert your OOP code to FP code almost mindlessly by total "inversion of control" - wherever you pass an object somewhere (making a call), in FP you pass the operation from the callee to the caller instead.
And I think it's this duality that you observe in practice.
However, I believe there is a practical difference between the two, which makes FP superior despite being harder to understand initially.
It's much easier to spot that you're doing "no-ops" in FP than in OOP. In OOP, often you pass the objects unchanged across layers, while in FP, this manifests as identity functions being used. And it's easier for both human and compiler to remove these redundant identity functions (through function specialization and things like fusion etc.).
Also, I believe functional approach allows you to better realize that there are some algebraic laws governing your problem domain.
It's really kind of like in mathematics, when you come from point-wise understanding of functions to functional understanding of functions, more insight is gained.