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

Function garrow_array_equal

c_glib/arrow-glib/basic-array.cpp:929–933  ·  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

927 * Since: 0.4.0
928 */
929gboolean
930garrow_array_equal(GArrowArray *array, GArrowArray *other_array)
931{
932 return garrow_array_equal_options(array, other_array, NULL);
933}
934
935/**
936 * garrow_array_equal_options:

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected