what is everyone's opinion on having private helper (extension) functions vs having nested helper functions
d
Dico
01/07/2019, 2:08 AM
I prefer private helper functions because they can be accessed from more than one function, and don't enforce block style. Moreover, I'm not a fan of having function objects created to execute a function in my binary code (jvm).
k
karelpeeters
01/07/2019, 9:17 AM
That only happens when a closure is necessary I think.