Method
ArrowArrayequal_range
since: 0.4.0
Declaration [src]
gboolean
garrow_array_equal_range (
GArrowArray* array,
gint64 start_index,
GArrowArray* other_array,
gint64 other_start_index,
gint64 end_index,
GArrowEqualOptions* options
)
Parameters
start_index
-
Type:
gint64
The start index of
array
to be used. other_array
-
Type:
GArrowArray
A
GArrowArray
to be compared.The data is owned by the caller of the function. other_start_index
-
Type:
gint64
The start index of
other_array
to be used. end_index
-
Type:
gint64
The end index of
array
to be used. The end index ofother_array
is “other_start_index
+ (end_index
-start_index
)”. options
-
Type:
GArrowEqualOptions
A
GArrowEqualOptions
to custom how to compare.The argument can be NULL
.The data is owned by the caller of the function.