How do I pass position-independent parameters to scheme functions?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In PLT Scheme you can use:
or
both would return 30. |
|||
|
|
I am not a scheme guru, but I'm thinking that parameters need to be a pair rather than an atom, then you make a parameter list from your pairs and use a let block to bind the values to actual parameters. And, for the love of all that is beautiful, call a helper function to do the actual work with the parameters in the right order since calling get-param in recursion is going to get expensive.
Someone who is really clever would make a factory function that would take an arbitrary lambda expression and build an equivalent position independent lambda from it. |
|||
|
|