Create integer "not" (~) 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 IntNot( Exp exp )
Parameters
- exp
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// ~a == 7 Exp.EQ( Exp.IntNot(Exp.IntBin("a")), Exp.Val(7));
See Also