System.Bluetooth.TBluetoothUUID.operator Equality

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class operator Equal(const Left, Right: TGUID): Boolean; inline;

Properties

Type Visibility Source Unit Parent
function public System.pas System.Bluetooth TBluetoothUUID

Description

Function to determine the equality of two TBluetoothUUID values. Overloaded == operator.

The equality operator returns True if the two TBluetoothUUID values given as parameters are equal, False otherwise.

Delphi:

var a, b: TBluetoothUUID;
if (a = b) then
  ; // Do something

C++:

TBluetoothUUID a, b;
if (a == b)
    ; // Do something
Note: Do not call the equality operator directly. It is an overload of the compiler equality operation.

See Also