Integration Cloud 7.0.0 | Built-In Services | Built-In Services | multiplyIntList
 
multiplyIntList
Multiplies a list of integers (represented in a String list) and returns the product.
Input Parameters
numList
String List Numbers (floating point numbers represented as Strings) to multiply.
Output Parameters
value
String Product of the numbers in numList.
Usage Notes
Make sure the result of your calculation is less than 64 bits in width (the maximum width for the long data type). If the result exceeds this limit, it will generate a data overflow.
Make sure the strings that are passed to the service in numList are in a locale-neutral format (that is, using the pattern -####.##). Passing locally formatted strings may result in unexpected results. For example, calling addFloats in a German locale with the arguments 1,23 and 2,34 will result in the value 357, not 3.57 or 3,57.