Exp ARshift Method Aerospike
Create integer "arithmetic right shift" (>>) operator. Requires server version 5.6.0+.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.6.0 (4.2.6)
Syntax

Examples

// a >> 8 > 0xff
Exp.GT(
  Exp.ARshift(Exp.IntBin("a"), Exp.Val(8)),
  Exp.Val(0xff));
See Also