System.Internal.VarHlpr.VariantXor2

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function  VariantXor2(const V1: Variant; const V2: Variant): Variant;

C++

extern DELPHI_PACKAGE System::Variant __fastcall VariantXor2(const System::Variant &V1, const System::Variant &V2);

Properties

Type Visibility Source Unit Parent
function public
System.Internal.VarHlpr.pas
System.Internal.VarHlpr.hpp
System.Internal.VarHlpr System.Internal.VarHlpr

Description

Performs a xor (exclusive or) operation between two Variants.

VariantXor2 performs a bit-wise xor (exclusive or) operation between V1 and V2 and returns a new Variant holding the result.

The input values must be convertible to numerical types; otherwise an EVariantTypeCastError exception will be raised.

See Also