ExpIntNot Method

Create integer "not" (~) operator. Requires server version 5.6.0+.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp IntNot(
	Exp exp
)

Parameters

exp  Exp
 

Return Value

Exp

Example

C#
// ~a == 7
Exp.EQ(
  Exp.IntNot(Exp.IntBin("a")),
  Exp.Val(7));

See Also