Files
c3c/lib/std/collections
Koni Marti 15fc435d92 collections: fix LinkedList.to_format
For-loop in LinkedList.to_format goes brrrrrr and prints the value of
the first node an infinte number of times because it does not properly
iterate the linked list.

Fix the list iterations and add the missing string format specifier.

Bug can be reproduced with:
```
import std;
fn void main() => @pool()
{
	io::printfn("%s", linkedlist::@tnew{usz}({1,2,3}));
}
```
2026-01-13 23:09:05 +01:00
..
2025-08-21 01:46:41 +02:00
2025-05-16 16:12:37 +02:00
2025-05-16 16:12:37 +02:00
2025-12-29 17:01:03 +01:00
2025-03-10 00:11:35 +01:00
2025-03-13 11:22:27 +01:00