Exp ToInt Method Aerospike
Create expression that converts a float to an integer. Requires server version 5.6.0+.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.0.0 (4.2.0)
Syntax

Examples

// int(2.5) == 2
Exp.EQ(
  Exp.ToInt(Exp.Val(2.5)),
  Exp.Val(2));
See Also