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.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.0.0 (4.2.0)
Syntax
Parameters
- exps
- Type: Aerospike.Client Exp
Examples
// a & 0xff == 0x11 Exp.EQ( Exp.IntAnd(Exp.IntBin("a"), Exp.Val(0xff)), Exp.Val(0x11));
See Also