I always thought that the benefit of linked lists was that you could add or remove items (especially not from the end) without having to copy lots of elements thanks to the beau
While I have close to no idea how scala is implemented. LinkedLists should be avoided,though.
They are inefficient on current hardware due to traverse them each Node practically leads to a cache miss.
Cache misses are what governs nowadays performance.