<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On Dec 22, 2012, at 4:23 AM, Cristian Esquivias wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite"><div dir="ltr"><p>Is this the general practice? It looks rather cumbersome and difficult to plan for.<br></p><p>Is there anything that would prevent me from having to wrap functions in make-parameter calls? Something like Clojure's binding special form (if you're familiar with it).</p><p>- Cristian<br></p>
<div class="gmail_quote">On Dec 21, 2012 6:45 PM, "David Van Horn" &lt;<a href="mailto:dvanhorn@ccs.neu.edu" target="_blank">dvanhorn@ccs.neu.edu</a>&gt; wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex; position: static; z-index: auto; ">

On 12/21/12 9:41 PM, Cristian Esquivias wrote:<br>
<blockquote class="gmail_quote" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0.8ex; border-left-width: 1px; border-left-color: rgb(204, 204, 204); border-left-style: solid; padding-left: 1ex; position: static; z-index: auto; ">
I'm trying to replace a function with another using parameterize.<br>
<br>
For example, when I try:<br>
<br>
(define (add2 n)<br>
&nbsp; &nbsp;(add1 (add1 n)))<br>
<br>
(parameterize ([add1 (λ [n] (+ n 2))])<br>
&nbsp; &nbsp;(add2 2))<br>
</blockquote>
</blockquote></div></div></blockquote></div><br><div>Part of the reason you can't do this is that Racket, like Scheme but unlike some old versions of Lisp, uses static scoping: whatever definition of "add1" is in effect at the time you define "add2" is the definition that will be used, regardless of what you do to "add1" later. &nbsp;This makes programs enormously easier to think about, since you can tell what a program does simply by reading its definition, without having to allow for any arbitrary definition somebody might make later.</div><div><br></div><div>If you want "add1" to be redefinable later, you have to tell Racket about that in advance, using "make-parameter".</div><div><br></div><div>Another option would be to "set!" the function that you're trying to redefine. &nbsp;However, if the function in question was defined in a different module, you probably won't be able to do that unless it was "set!" at least once in that module; as I understand it, Racket recognizes things that are never mutated in their defining module and optimizes them to be immutable forever.</div><div><br></div><div>If you just want to redefine "add1" in a specific scope, you can use "let", which shadows an existing definition:</div><div>(let ((add1 (lambda (n) (+ n 2)))) (add1 3)) &nbsp; ; produces 5</div><div><br></div><div>If you want to do this for a definition, you could try</div><div>(define (add2 m)</div><div>&nbsp; &nbsp;(let ((add1 (lambda (n) (+ n 2)))) &nbsp;(add1 (add1 m))))</div><div>(add2 3) ; produces 7</div><div>or, if you prefer to do the "let"ting at define-time,</div><div>(define add2</div><div>&nbsp; &nbsp;(let ((add1 (lambda (n) (+ n 2))))</div><div>&nbsp; &nbsp; &nbsp; (lambda (m) (add1 (add1 m)))))</div><div>(add2 3) ; produces 7</div><br><br><div>
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div>Stephen Bloch</div><div><a href="mailto:sbloch@adelphi.edu">sbloch@adelphi.edu</a></div></div></span></span>
</div>
<br></body></html>