So associative list is actually a list of lists right??
So if I create a list of 100 lists does it count as 1 list or 101 towards the list limit in byond??
What I would 99% expect is the 101 lists since the 1 list would contain references to 100 more lists right??
To answer the actual question at hand though (what you're talking about are 3 dimensional lists), it would count as 101 lists. Any initialized lists will count towards the limit.
var/list/my_list = list("one"=list("one_one","one_two"),"two"=list("two_one","two_two")) |
Associative lists are lists containing key/value pairs, where keys are associated with specific values. list[key] points to value, which can be a list or any other value.