MCPcopy Create free account
hub / github.com/apache/arrow / garrow_array_equal_approx

Function garrow_array_equal_approx

c_glib/arrow-glib/basic-array.cpp:976–982  ·  view source on GitHub ↗

* 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 */

Source from the content-addressed store, hash-verified

974 * Since: 0.4.0
975 */
976gboolean
977garrow_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:

Callers

nothing calls this directly

Calls 2

garrow_array_get_rawFunction · 0.70
ApproxEqualsMethod · 0.45

Tested by

no test coverage detected