Create integer "logical right shift" (>>>) operator.
Requires server version 5.6.0+.
Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 5.0.0.0 (5.0.0)
Syntax
C#
public static Exp Rshift( Exp value, Exp shift )
Parameters
- value
- Type: Aerospike.ClientExp
- shift
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// a >>> 8 > 0xff Exp.GT( Exp.Rshift(Exp.IntBin("a"), Exp.Val(8)), Exp.Val(0xff));
See Also