Exp Ceil Method Aerospike
Create expression that rounds a floating point number up to the closest integer value. The return type is float. Requires server version 5.6.0+.

Namespace: Aerospike.Client
Assembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.5.0 (4.2.5)
Syntax

Examples

// ceil(2.15) >= 3.0
Exp.GE(
  Exp.Ceil(Exp.Val(2.15)),
  Exp.Val(3.0));
See Also