Create integer "xor" (^) operator that is applied to two or more integers.
All arguments must resolve to integers.
Requires server version 5.6.0+.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.1.1.0 (5.1.1)
Syntax
C#
public static Exp IntXor( params Exp[] exps )
Parameters
- exps
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// a ^ b == 16 Exp.EQ( Exp.IntXor(Exp.IntBin("a"), Exp.IntBin("b")), Exp.Val(16));
See Also