Math Functions
  | 
rounds value with optionally given precision (default 0) and optional rounding mode (default HALF_UP)  | 
  | 
return the maximum value a long can have  | 
  | 
return the minimum value a long can have  | 
  | 
return the largest positive finite value of type double  | 
  | 
return the smallest positive nonzero value of type double  | 
  | 
return the maximum value a int can have  | 
  | 
return the minimum value a int can have  | 
  | 
return the maximum value a byte can have  | 
  | 
return the minimum value a byte can have  | 
  | 
convert roman numbers to arabic  | 
  | 
convert arabic numbers to roman  | 
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  |