Mathematical Functions
Functions for common mathematical operations
Qualified Name | Type |
---|---|
|
Function |
|
Function |
|
Function |
|
Function |
|
Function |
|
Function |
|
Function |
|
Function |
|
Function |
|
Function |
Examples
RETURN apoc.math.maxLong() AS output;
Output |
---|
9223372036854775807 |
RETURN apoc.math.minLong() AS output;
Output |
---|
-9223372036854775808 |
RETURN apoc.math.maxDouble() AS output;
Output |
---|
1.7976931348623157e+308.0 |
RETURN apoc.math.minDouble() AS output;
Output |
---|
5e-324 |
RETURN apoc.math.maxInt() AS output;
Output |
---|
2147483647 |
RETURN apoc.math.minInt() AS output;
Output |
---|
-2147483648 |
RETURN apoc.math.maxByte() AS output;
Output |
---|
127 |
RETURN apoc.math.minByte() AS output;
Output |
---|
-128 |