@ZILtoid1991 to Programmer [email protected]English • 8 months agoFunctional bros be likeimagemessage-square59arrow-up1313arrow-down116
arrow-up1297arrow-down1imageFunctional bros be like@ZILtoid1991 to Programmer [email protected]English • 8 months agomessage-square59
minus-square@[email protected]linkfedilink9•8 months agoI think using both is normal. Closures and objects are duals of each other. Do whatever is understandable and maintainable, neither paradigm is magic.
minus-squareKogasalinkfedilink-1•8 months agoIs the duality statement meant to be true in a technical sense?
minus-square@[email protected]linkfedilink1•8 months agoYeah! For example, if the language allows closures to capture state, they can act like properties on an instance.
minus-square@[email protected]linkfedilink1•8 months agoA closure is a function with captured state. An object is state with methods.
I think using both is normal. Closures and objects are duals of each other. Do whatever is understandable and maintainable, neither paradigm is magic.
that’s a nice way to look at it. thanks!
Is the duality statement meant to be true in a technical sense?
Yeah! For example, if the language allows closures to capture state, they can act like properties on an instance.
I don’t see the duality
A closure is a function with captured state. An object is state with methods.