Method
ArrowArrayslice
Declaration [src]
GArrowArray*
garrow_array_slice (
GArrowArray* array,
gint64 offset,
gint64 length
)
Parameters
offset
-
Type:
gint64
The offset of sub
GArrowArray
. length
-
Type:
gint64
The length of sub
GArrowArray
.
Return value
Type: GArrowArray
The sub GArrowArray
. It covers only from
offset
to offset + length
range. The sub GArrowArray
shares
values with the base GArrowArray
.
The caller of the method takes ownership of the data, and is responsible for freeing it. |