#Loop over mutable pointers to ArrayList elements
1 messages · Page 1 of 1 (latest)
ahh okay
it's const by default so you need to treat it as a pointer to modify
try this:
for (list.items) |*item| {
try item.append(1);
}
yep that works thanks guys
also yeah, try
I'm not actually appending, just example but yeah
lol i didnt even notice that, just autocompleted that in