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: 5.3.2.0 (5.3.2)
Syntax
C#
public static Exp Ceil( Exp num )
Parameters
- num
- Type: Aerospike.ClientExp
Return Value
Type: ExpExamples
// ceil(2.15) >= 3.0 Exp.GE( Exp.Ceil(Exp.Val(2.15)), Exp.Val(3.0));
See Also