Method

ArrowArrayequal_range

Declaration [src]

gboolean
garrow_array_equal_range (
  GArrowArray* array,
  gint64 start_index,
  GArrowArray* other_array,
  gint64 other_start_index,
  gint64 end_index,
  GArrowEqualOptions* options
)

Description

No description available.
Available since:0.4.0

Parameters

start_index gint64
 

The start index of array to be used.

other_array GArrowArray
 

A GArrowArray to be compared.

 The data is owned by the caller of the function.
other_start_index gint64
 

The start index of other_array to be used.

end_index gint64
 

The end index of array to be used. The end index of other_array is “other_start_index + (end_index - start_index)”.

options GArrowEqualOptions
 

A GArrowEqualOptions to custom how to compare.

 The argument can be NULL.
 The data is owned by the caller of the function.

Return value

Returns: gboolean
 

TRUE if both of them have the same data in the range, FALSE otherwise.