ID:2220263
 
(See the best response by Nadrew.)
Code:
        list/Tracks = list("IronThrone" = list("","","","","",""),
"Fiefdoms" = list("","","","","",""),
"Raven" = list("","","","","",""))

...


var/list/Bidders = Tracks["IronThrone"].Copy()

var/pos = Tracks["IronThrone"].Find(needle)


Problem description:
Do I need to create a temporary list to equate to the list inside the associative list, and then use .Copy() .Find() or .len on the temporary list, or is there a way to manage without?

Best response
You'd need to do what you said, you might be able to get away with using :, but I really doubt it would be function (or reliable if it was).
Cheers Nadrew.