Hellp everyone and thanks in advance to all the helpers.
I nil local variables i functions to save memory, should I nil the nested functions too ?
Also, more tips about memory will be well appriciated.
Hellp everyone and thanks in advance to all the helpers.
I nil local variables i functions to save memory, should I nil the nested functions too ?
Also, more tips about memory will be well appriciated.
No, as long as they are local you don’t need to. However, I’d suggest getting rid of nested functions entirely if you can.
No, as long as they are local you don’t need to. However, I’d suggest getting rid of nested functions entirely if you can.