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.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.1.0 (4.2.1)
Syntax
Parameters
- num
- Type: Aerospike.Client Exp
Examples
// ceil(2.15) >= 3.0 Exp.GE( Exp.Ceil(Exp.Val(2.15)), Exp.Val(3.0));
See Also