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