All lists should be lists. Distinction between FixedSizedList and List was a mistake.
Goal
For certain operations it's more efficient to convert FixedSizedList to a ListView, however, because of dtypes we cannot do it right now. FixedSizedList is just a bit of metadata that shouldn't preclude us from doing these optimisations. By removing FixedSizedList dtype and instead looking at the physical encoding information we would be able to achieve it.
This is particularly painful right now in take operations where we would like all types to be freely reorderable but FixedSizedList requires copying all values in order to do it.
All lists should be lists. Distinction between FixedSizedList and List was a mistake.
Goal
For certain operations it's more efficient to convert FixedSizedList to a ListView, however, because of dtypes we cannot do it right now. FixedSizedList is just a bit of metadata that shouldn't preclude us from doing these optimisations. By removing FixedSizedList dtype and instead looking at the physical encoding information we would be able to achieve it.
This is particularly painful right now in
takeoperations where we would like all types to be freely reorderable but FixedSizedList requires copying all values in order to do it.