* garrow_array_equal: * @array: A #GArrowArray. * @other_array: A #GArrowArray to be compared. * * Returns: %TRUE if both of them have the same data, %FALSE * otherwise. * * Since: 0.4.0 */
| 928 | * Since: 0.4.0 |
| 929 | */ |
| 930 | gboolean |
| 931 | garrow_array_equal(GArrowArray *array, GArrowArray *other_array) |
| 932 | { |
| 933 | return garrow_array_equal_options(array, other_array, NULL); |
| 934 | } |
| 935 | |
| 936 | /** |
| 937 | * garrow_array_equal_options: |
nothing calls this directly
no test coverage detected