score.mask.accumulator

Accumulator. Based on Andre Bartetzki's CMask.

accumulate

(accumulate genfn)(accumulate genfn init)
The accumulator continuously sums all its input values to an inital value 
init. The inital value is optional and has a default value of 0.

accumulate-limit

(accumulate-limit low high genfn)(accumulate-limit low high genfn init)
The accumulator continuously sums all its input values to an inital value 
init. The inital value is optional and has a default value of 0.

accumulate-mirror

(accumulate-mirror low high genfn)(accumulate-mirror low high genfn init)
The accumulator continuously sums all its input values to an inital value 
init. The inital value is optional and has a default value of 0.

accumulate-wrap

(accumulate-wrap low high genfn)(accumulate-wrap low high genfn init)
The accumulator continuously sums all its input values to an inital value 
init. The inital value is optional and has a default value of 0.

create-accum-function

(create-accum-function genfn low high init accumfn)

limit

(limit v l h)

mirror

(mirror v l h)

wrap

(wrap v l h)