Title:
Bug 75364:(Watson Migration Closure)ER for: Adding 'ignoreUndefined=""' attribute to arraySum()
| View in TrackerStatus/Resolution/Reason: Closed/Fixed/
Reporter/Name(from Bugbase): Aaron Neff / Aaron Neff (Aaron Neff)
Created: 02/07/2009
Components: Language, Functions
Versions: 9.0
Failure Type: Enhancement Request
Found In Build/Fixed In Build: 0000 /
Priority/Frequency: Normal / Unknown
Locale/System: English / Platforms All
Vote Count: 1
Problem:
ER for: Adding 'ignoreUndefined=""' attribute to arraySum(). Because, currently, arraySum() does not support undefined elements. This would offer a shortcut to 'arraySum(listToArray(arrayToList()))' This new attribute would be optional, boolean, and default to 'false' for backward compatibility.
Method:
Examples. Please see "<--- Proposal" notes.
<cfscript>
//query example
myQuery = queryNew("myQueryColumn", "integer");
queryAddRow(myQuery, 3);
myQuery.myQueryColumn[1] = 1;
myQuery.myQueryColumn[3] = 3;
dump(var=arraySum(listToArray(arrayToList(myQuery['myQueryColumn']))));
//dump(var=arraySum(myQuery['myQueryColumn'], true)); <--- Proposal
writeOutput('<br />--<br />');
//array example
myArray = arrayNew(1);
myArray[1] = 1;
myArray[3] = 3;
dump(var=arraySum(listToArray(arrayToList(myArray))));
//dump(var=arraySum(myArray, true)); <--- Proposal
</cfscript>
Result:
----------------------------- Additional Watson Details -----------------------------
Watson Bug ID: 3037465
External Customer Info:
External Company:
External Customer Name: Aaron Neff
External Customer Email: 3D1D17B03C844EBF992001AC
External Test Config: 02/07/2009
Attachments:
Comments: