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

Function garrow_array_equal

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

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

Source from the content-addressed store, hash-verified

928 * Since: 0.4.0
929 */
930gboolean
931garrow_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:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected