what is everyone's opinion on having private helpe...
# announcements
a
what is everyone's opinion on having private helper (extension) functions vs having nested helper functions
d
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
That only happens when a closure is necessary I think.
d
Yeah