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

Function gaflight_location_equal

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

* gaflight_location_equal: * @location: A #GAFlightLocation. * @other_location: A #GAFlightLocation to be compared. * * Returns: %TRUE if both of them represents the same URI, %FALSE otherwise. * * Since: 5.0.0 */

Source from the content-addressed store, hash-verified

309 * Since: 5.0.0
310 */
311gboolean
312gaflight_location_equal(GAFlightLocation *location, GAFlightLocation *other_location)
313{
314 const auto flight_location = gaflight_location_get_raw(location);
315 const auto flight_other_location = gaflight_location_get_raw(other_location);
316 return flight_location->Equals(*flight_other_location);
317}
318
319typedef struct GAFlightDescriptorPrivate_
320{

Callers

nothing calls this directly

Calls 2

EqualsMethod · 0.45

Tested by

no test coverage detected