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
Majority of the current GArrow API is aligned with the API that Arrow provides. There are a few inconsistencies that were introduced in order to reduce the complexity of the API for the need of initial release.
Arrow uses builder-style API that in order to build up arrays, where ArrayData type plays a key role in accessing the array data, and abstracting the types away completely. For simplicity sake, current Array implementation takes the underlying data as a constructor argument
The text was updated successfully, but these errors were encountered:
Majority of the current
GArrow
API is aligned with the API thatArrow
provides. There are a few inconsistencies that were introduced in order to reduce the complexity of the API for the need of initial release.Arrow
uses builder-style API that in order to build up arrays, whereArrayData
type plays a key role in accessing the array data, and abstracting the types away completely. For simplicity sake, currentArray
implementation takes the underlying data as a constructor argumentThe text was updated successfully, but these errors were encountered: