I'm trying to make sense of the example code here (below Examples). I don't understand that parametrize construct. The docs for it are here, but they don't help. What does it do?
feedback
|
|
Many functions (including many primitive ones) use parameters as a way to customize their behavior. For example
You usually call this function and see something printed on the screen -- but in some cases you want to use it to print something to a file or whatever. You could do this:
One problem with this is that it is tedious to do -- but that's easily solved with a macro. (In fact, PLT still has a construct that does that in some languages: So the question is what's the point of having parameters instead of just using globals and The other problem is more subtle. Say that you have a parameter with a numeric value, and you want to do the following:
In Scheme, "tail calls" are important -- they are the basic tool for creating loops and much more. Finally, | |||
|
feedback
|
|
| |||
|
feedback
|
|
Parameterize is a means by which you can dynamically re-bind values within an existing function, without using lambda to do so. In practice sometimes it is a lot easier to use parameterize to re-bind values within a function rather than being required to pass arguments and bind them using lambda. For example, say that a library that you use emits HTML to stdout but for sake of convenience you want to capture that value to a string and perform further operations on it. The library designer has at least two choices to make that easy for you: 1) accept an output port as a argument to the function or 2) parameterize the current-output-port value. 1 is ugly and a hassle. 2 is nicer since the most likely behavior is to print to stdout, but in case you want to print to a string-port you can just parameterize the call to that function. | |||
|
feedback
|