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

Function garrow_chunked_array_equal

c_glib/arrow-glib/chunked-array.cpp:210–218  ·  view source on GitHub ↗

* garrow_chunked_array_equal: * @chunked_array: A #GArrowChunkedArray. * @other_chunked_array: A #GArrowChunkedArray 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

208 * Since: 0.4.0
209 */
210gboolean
211garrow_chunked_array_equal(GArrowChunkedArray *chunked_array,
212 GArrowChunkedArray *other_chunked_array)
213{
214 const auto arrow_chunked_array = garrow_chunked_array_get_raw(chunked_array);
215 const auto arrow_other_chunked_array =
216 garrow_chunked_array_get_raw(other_chunked_array);
217 return arrow_chunked_array->Equals(arrow_other_chunked_array);
218}
219
220/**
221 * garrow_chunked_array_get_value_data_type:

Callers

nothing calls this directly

Calls 2

EqualsMethod · 0.45

Tested by

no test coverage detected