Exp IntAnd Method Aerospike
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: 4.2.6.0 (4.2.6)
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