Create integer "or" (|) 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 IntOr( params Exp[] exps )
Parameters
- exps
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// a | 0x10 != 0 Exp.NE( Exp.IntOr(Exp.IntBin("a"), Exp.Val(0x10)), Exp.Val(0));
See Also