Hey guys,
I'm looking for alternative, faster and perhaps more efficient methods for looping through a list. Using a for loop seems like the more default method, but I'm sure there must be ways that are somewhat faster than that.
Thanks in advance, guys, have a nice day :P
Copyright © 2024 BYOND Software.
All rights reserved.
You could use for()'s other syntax like:
But it's not any faster, if anything it's slower because it does an index-lookup the way it does.