* 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 */
| 320 | * Since: 0.17.0 |
| 321 | */ |
| 322 | gboolean |
| 323 | garrow_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: |
nothing calls this directly
no test coverage detected