ExpIntAnd 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: 7.0.1
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