apoc.number

Qualified Name Type

apoc.number.arabicToRoman(number Any) - converts the given Arabic numbers to Roman numbers.

Function

apoc.number.exact.add(stringA String, stringB String) - returns the result of adding the two given large numbers (using Java BigDecimal).

Function

apoc.number.exact.div(stringA String, stringB String, precision Integer, roundingMode String) - returns the result of dividing a given large number with another given large number (using Java BigDecimal).

Function

apoc.number.exact.mul(stringA String, stringB String, precision Integer, roundingMode String) - returns the result of multiplying two given large numbers (using Java BigDecimal).

Function

apoc.number.exact.sub(stringA String, stringB String) - returns the result of subtracting a given large number from another given large number (using Java BigDecimal).

Function

apoc.number.exact.toExact(number Integer) - returns the exact value of the given number (using Java BigDecimal).

Function

apoc.number.exact.toFloat(string String, precision Integer, roundingMode String) - returns the float value of the given large number (using Java BigDecimal).

Function

apoc.number.exact.toInteger(string String, precision Integer, roundingMode String) - returns the integer value of the given large number (using Java BigDecimal).

Function

apoc.number.format(number Any, pattern String, language String) - formats the given long or double using the given pattern and language to produce a string.

Function

apoc.number.parseFloat(text String, pattern String, language String) - parses the given string using the given pattern and language to produce a double.

Function

apoc.number.parseInt(text String, pattern String, language String) - parses the given string using the given pattern and language to produce a long.

Function

apoc.number.romanToArabic(romanNumber String) - converts the given Roman numbers to Arabic numbers.

Function