chickadee » chicken » base » parameterize

(parameterize ((PARAMETER1 X1) ...) BODY ...)syntax

Binds the parameters PARAMETER1 ... dynamically to the values X1 ... during execution of BODY .... (see also: make-parameter in Parameters). Note that PARAMETER may be any expression that evaluates to a parameter procedure.

This special form is compatible with the definition from the R7RS (scheme base) library.