Hacker News new | ask | show | jobs
by hi-v-rocknroll 761 days ago
Linked lists are often the wrong choice because they're rarely performant or efficient when compared to vecs in the real world.

In general, use vecs until you absolutely can't.

Perhaps there are a few uses for LL's in limited circumstances.