Exp.IntAnd Method

Create integer "and" (&) operator that is applied to two or more integers. All arguments must resolve to integers. Requires server version 5.6.0+.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
C#
public static Exp IntAnd(
	params Exp[] exps
)

Parameters

exps  Exp[]
 

Return Value

Exp

Example

C#
// a & 0xff == 0x11
Exp.EQ(
  Exp.IntAnd(Exp.IntBin("a"), Exp.Val(0xff)),
  Exp.Val(0x11));

See Also