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

Function garrow_file_info_equal

c_glib/arrow-glib/file-system.cpp:322–328  ·  view source on GitHub ↗

* garrow_file_info_equal: * @file_info: A #GArrowFileInfo. * @other_file_info: A #GArrowFileInfo to be compared. * * Returns: %TRUE if both of them have the same data, %FALSE * otherwise. * * Since: 0.17.0 */

Source from the content-addressed store, hash-verified

320 * Since: 0.17.0
321 */
322gboolean
323garrow_file_info_equal(GArrowFileInfo *file_info, GArrowFileInfo *other_file_info)
324{
325 const auto arrow_file_info = garrow_file_info_get_raw(file_info);
326 const auto arrow_other_file_info = garrow_file_info_get_raw(other_file_info);
327 return arrow_file_info->Equals(*arrow_other_file_info);
328}
329
330/**
331 * garrow_file_info_is_file:

Callers

nothing calls this directly

Calls 2

garrow_file_info_get_rawFunction · 0.85
EqualsMethod · 0.45

Tested by

no test coverage detected