You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 10, 2024. It is now read-only.
"First class" here means "not implemented using Python lists". You can interpret any array of type T as Array[T] by adding an array of offsets that encode size and position.
There are other possible representations. This one is good because flattening (for flatmap function or flatten) is zero copy, and it's highly cache-efficient for scanning. Downside is that mutability is more costly. I would argue that we should not be encouraging such structures to be mutated anyway
Similar to the
ARRAY
type found in SQL variants with nested types. See also theList
type in Apache Arrow.xref pandas-dev/pandas#8517
The text was updated successfully, but these errors were encountered: