Create integer "and" (&) 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.3.1.0 (5.3.1)
Syntax
C#
public static Exp IntAnd( params Exp[] exps )
Parameters
- exps
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// a & 0xff == 0x11 Exp.EQ( Exp.IntAnd(Exp.IntBin("a"), Exp.Val(0xff)), Exp.Val(0x11));
See Also