On Wed Feb 11, 2026 at 12:07 PM CET, Boris Brezillon wrote: > I try to avoid using concepts the language I rely on is not friendly > with.
It's not really a language limitation. For instance, you can implement lists the exact same way as they can be implemented in C. It's more that a memory safe list implementation is quite tricky in general. Lists clearly do have their place. In this specific case, it probably doesn't matter too much, but in general I'd abstain from not using a list (where it is the best fit) just because they are tricky in getting them implemented in a memory safe way.
