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

Function gaflight_descriptor_equal

c_glib/arrow-flight-glib/common.cpp:417–424  ·  view source on GitHub ↗

* gaflight_descriptor_equal: * @descriptor: A #GAFlightDescriptor. * @other_descriptor: A #GAFlightDescriptor to be compared. * * Returns: %TRUE if both of them represents the same descriptor, * %FALSE otherwise. * * Since: 5.0.0 */

Source from the content-addressed store, hash-verified

415 * Since: 5.0.0
416 */
417gboolean
418gaflight_descriptor_equal(GAFlightDescriptor *descriptor,
419 GAFlightDescriptor *other_descriptor)
420{
421 const auto flight_descriptor = gaflight_descriptor_get_raw(descriptor);
422 const auto flight_other_descriptor = gaflight_descriptor_get_raw(other_descriptor);
423 return flight_descriptor->Equals(*flight_other_descriptor);
424}
425
426G_DEFINE_TYPE(GAFlightPathDescriptor, gaflight_path_descriptor, GAFLIGHT_TYPE_DESCRIPTOR)
427

Callers

nothing calls this directly

Calls 2

EqualsMethod · 0.45

Tested by

no test coverage detected