I recently wondered if there are any efficient coding recipes? For example if I have the same condition/expression applied to 3 different objects - which would be more efficient:
- Apply the condition/expression to the group (grouped 3 objects)
or - keep the condition/expression attached to each of the 3 individual objects?
Is there any advantage to either way (memory-wise, file size, speed of execution,…)?
Thanks in advance!