This seems like a really dumb question, and it's probably in the manual, but I can't find it.<br><br>So I know that I can make a vector of u8s / floats, etc ... but what if I want a vector of scheme objects (and I want the pointer from the vector to the scheme object to be considered a link for the purpose of garbage collection). What do I use for this? I don't want lists since they're O(n), nor maps since they're O(log n), i could use a hashtable ... but I'd prefer to use an array.<br>
<br>Thanks!<br>