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

Function gaflight_endpoint_equal

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

* gaflight_endpoint_equal: * @endpoint: A #GAFlightEndpoint. * @other_endpoint: A #GAFlightEndpoint to be compared. * * Returns: %TRUE if both of them represents the same endpoint, * %FALSE otherwise. * * Since: 5.0.0 */

Source from the content-addressed store, hash-verified

810 * Since: 5.0.0
811 */
812gboolean
813gaflight_endpoint_equal(GAFlightEndpoint *endpoint, GAFlightEndpoint *other_endpoint)
814{
815 const auto flight_endpoint = gaflight_endpoint_get_raw(endpoint);
816 const auto flight_other_endpoint = gaflight_endpoint_get_raw(other_endpoint);
817 return flight_endpoint->Equals(*flight_other_endpoint);
818}
819
820/**
821 * gaflight_endpoint_get_locations:

Callers

nothing calls this directly

Calls 2

EqualsMethod · 0.45

Tested by

no test coverage detected