chickadee » math-utils » vector-reduce

vector-reduce FUNC SEED VEC #!optional START ENDprocedure
FUNC
('a 'b -> 'a) ; .
SEED
'a ; initial value.
VEC
(vector-of 'b ; vector to reduce.
START
fixnum ; start index of VEC, default 0.
END
fixnum ; end index of VEC, default (vector-length VEC).