is there any way to retrieve a type instance by index from a tlist? i.e.:
index = 5 '(some arbitrary number in the middle of a list)
while (index < tlistobject.count()){
a:typeinlist = (retrieving object from tlist...)
wend
i understand that i could handle this with an array, but I preferred the built-in functionality of the linked list...
index = 5 '(some arbitrary number in the middle of a list)
while (index < tlistobject.count()){
a:typeinlist = (retrieving object from tlist...)
wend
i understand that i could handle this with an array, but I preferred the built-in functionality of the linked list...