Exp.Div Method
Create "divide" (/) operator that applies to a variable number of expressions.
If there is only one argument, returns the reciprocal for that argument.
Otherwise, return the first argument divided by the product of the rest.
All arguments must resolve to the same type (integer or float).
Requires server version 5.6.0+.
Namespace: Aerospike.ClientAssembly: AerospikeClient (in AerospikeClient.dll) Version: 8.0.1+e35566e493546c0887ebb841c8e2a2c6a7cbde18
public static Exp Div(
params Exp[] exps
)
- exps Exp[]
-
Exp
Exp.GT(
Exp.Div(Exp.IntBin("a"), Exp.IntBin("b"), Exp.IntBin("c")),
Exp.Val(1));