scanl1

EveAndersson.com : API Browser : scanl1

scanl1

scanl1 f xs
Defined in tcl/ad-functional.tcl

takes a binary function f and a list {x1 x2 x3 ...} and returns {x1 (f x1 x2) (f (f x1 x2) x3) ...}

Parameters:
f
xs
[ show source ]

Show another procedure:

eve@eveandersson.com