fluid.accumulate(list, fn, arg) Section |
---|
Column |
---|
| Scans through a list of objects, "accumulating" a value over them (may be a straightforward "sum" or some other chained computation). The results will be added to the initial value passed in by "arg" and returned Code Block |
---|
|
fluid.accumulate(list, fn, arg);
|
File name: Fluid.js Parameters Span |
---|
| list
| (Array) The list of objects to be accumulated over. | fn
| (Function) An "accumulation function" accepting the signature (object, total, index) where object is the list member, total is the "running total" object (which is the return value form the previous function), and index is the index number. | arg
| (Object) The initial value for the "running total" object. |
|
Return Value Span |
---|
| Object | The modified arg object. |
|
|
| NotesTo a Google developer, this would be "reduce", from the "map/reduce" pairing. Example Code Block |
---|
|
var func = function (column, list) {
return list.concat(column.elements);
};
var modules = fluid.accumulate(layout.columns, func, [])
|
In this example, the function func will add the elements property of each entry of list.columns to an initially empty array and return the filled array. |