Create expression that returns the minimum value in a variable number of expressions.
All arguments must be the same type (integer or float).
Requires server version 5.6.0+.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 4.2.5.0 (4.2.5)
Syntax
Parameters
- exps
- Type: Aerospike.Client Exp
Examples
// min(a, b, c) > 0 Exp.GT( Exp.Min(Exp.IntBin("a"), Exp.IntBin("b"), Exp.IntBin("c")), Exp.Val(0));
See Also