* garrow_array_equal_approx: * @array: A #GArrowArray. * @other_array: A #GArrowArray to be compared. * * Returns: %TRUE if both of them have the approx same data, %FALSE * otherwise. * * Since: 0.4.0 */
| 974 | * Since: 0.4.0 |
| 975 | */ |
| 976 | gboolean |
| 977 | garrow_array_equal_approx(GArrowArray *array, GArrowArray *other_array) |
| 978 | { |
| 979 | const auto arrow_array = garrow_array_get_raw(array); |
| 980 | const auto arrow_other_array = garrow_array_get_raw(other_array); |
| 981 | return arrow_array->ApproxEquals(arrow_other_array); |
| 982 | } |
| 983 | |
| 984 | /** |
| 985 | * garrow_array_equal_range: |
nothing calls this directly
no test coverage detected