ID:154756
 
Is this memory friendly?

someclient << someimage
...
//clear screen
src.client.images = null
I think it's be best to clear it like a list, since that's what it is.
client.images = list()
client.images.Cut()
// both empty client.images


You really shouldn't have to do that though. You should keep track of your images and remove individual images (or a group of images) when necessary.
In most cases this is irrelevant. BYOND uses a garbage collector to manage memory, making memory management irrelevant in most applications. Unless you're doing something very, very memory intensive, don't bother with it.