ExpGE Method

Create "greater than or equal" operation.

Definition

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 7.0.1
C#
public static Exp GE(
	Exp left,
	Exp right
)

Parameters

left  Exp
 
right  Exp
 

Return Value

Exp

Example

C#
// a >= 88
Exp.GE(Exp.IntBin("a"), Exp.Val(88))

See Also