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
)

Description

No description available.

Available since: 0.4.0

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 of other_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.

Return value

Type: gboolean

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