XOR-func
Minimum Origin Version Required: 2019 SR0
This function is used to return XOR operation of two logical values n1 and n2. XOR operation returns TRUE when either logical value is TRUE, and returns FALSE when both logical values are TRUE or FALSE.
bool XOR(bool n1, bool n2)
n1
n2
Return a XOR operation of two logical values.
XOR(1>0,7>2) =; //both TRUE. Return 0 XOR(1<0,7<2) =; //both FALSE. Return 0 XOR(1>0,7<2) =; //1st TRUE 2nd FALSE. Return 1
BitXOR