Script Library: 1240 scripts
 

accumulate.r

REBOL [ Title: "Accumulate" Date: 3-Jul-2002 Name: 'Accumulate Version: 1.0.1 File: %accumulate.r Author: "Andrew Martin" Purpose: {Cumulates values in a block together, by successively applying the function to each value in Series.} eMail: %Al--Bri--xtra--co--nz Web: http://valley.150m.com Acknowledgements: [ "Ladislav Mecir" "Carl Sassenrath" ] Example: [ Accumulate 0 [1 2 3 4 5] :+ ] library: [ level: 'intermediate platform: none type: 'function domain: 'math tested-under: none support: none license: none see-also: none ] ] Accumulate: func [ {Cumulates values in a block together, by successively applying the function to each value in Series.} [catch] Accumulator [any-type!] Series [series!] F [any-function!] "Function that takes two parameters, Accumulator and Item." ] [ throw-on-error [ foreach Item Series [ Accumulator: F Accumulator :Item ] :Accumulator ] ]
halt ;; to terminate script if DO'ne from webpage
Notes
  • accumulate.r has a discussion thread. Posts: 84. Most recent: 4-Jul
  • email address(es) have been munged to protect them from spam harvesters. If you are a Library member, you can log on and view this script without the munging.
  • (Al:Bri:xtra:co:nz)