Software AG Products 10.7 | Integrating On-Premises and Cloud Applications | Integration Server Built-In Services | Math Folder | Summary of Elements in this Folder | pub.math:addFloatList
 
pub.math:addFloatList
WmPublic. Adds a list of floating point numbers (represented in a string list) and returns the sum.
Input Parameters
numList
String List Numbers (floating point numbers represented in a string list) to add.
Output Parameters
value
String Sum of the numbers in numList. If a sum cannot be produced, value contains one of the following:
Value
Description
Infinity
The computation produces a positive value that overflows the representable range of a float type.
-Infinity
The computation produces a negative value that overflows the representable range of a float type.
0.0
The computation produces a value that underflows the representable range of a float type (for example, adding a number to infinity).
NaN
The computation produces a value that cannot be represented as a number (for example, any operation that uses NaN as input, such as 10.0 + NaN = NaN).
Usage Notes
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 pub.math: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.