<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Be Mindful of Clojure&#8217;s binding</title>
	<atom:link href="http://cemerick.com/2009/11/03/be-mindful-of-clojures-binding/feed/" rel="self" type="application/rss+xml" />
	<link>http://cemerick.com/2009/11/03/be-mindful-of-clojures-binding/</link>
	<description>Against all odds.</description>
	<lastBuildDate>Wed, 08 Feb 2012 21:48:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Lars Rune Nøstdal</title>
		<link>http://cemerick.com/2009/11/03/be-mindful-of-clojures-binding/#comment-877</link>
		<dc:creator><![CDATA[Lars Rune Nøstdal]]></dc:creator>
		<pubDate>Sun, 11 Dec 2011 21:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://cemerick.com/?p=134#comment-877</guid>
		<description><![CDATA[I just tried this in 1.4-SNAPSHOT and I get 15:

user&gt; (def ^:dynamic *foo* 5)
#&#039;user/*foo*

user&gt; (defn adder [param]
        (+ *foo* param))
#&#039;user/adder

user&gt; (binding [*foo* 10]
               (doseq [v (pmap adder (repeat 3 5))]
                      (println v)))
15
15
15
nil
user&gt; 


I&#039;m not sure when this changed, of if something else is going on here.]]></description>
		<content:encoded><![CDATA[<p>I just tried this in 1.4-SNAPSHOT and I get 15:</p>
<p>user&gt; (def ^:dynamic *foo* 5)<br />
#&#8217;user/*foo*</p>
<p>user&gt; (defn adder [param]<br />
        (+ *foo* param))<br />
#&#8217;user/adder</p>
<p>user&gt; (binding [*foo* 10]<br />
               (doseq [v (pmap adder (repeat 3 5))]<br />
                      (println v)))<br />
15<br />
15<br />
15<br />
nil<br />
user&gt; </p>
<p>I&#8217;m not sure when this changed, of if something else is going on here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chas Emerick</title>
		<link>http://cemerick.com/2009/11/03/be-mindful-of-clojures-binding/#comment-36</link>
		<dc:creator><![CDATA[Chas Emerick]]></dc:creator>
		<pubDate>Tue, 20 Apr 2010 13:10:46 +0000</pubDate>
		<guid isPermaLink="false">http://cemerick.com/?p=134#comment-36</guid>
		<description><![CDATA[Oh, I know, that probably should&#039;ve had a ;-) instead of a :-)]]></description>
		<content:encoded><![CDATA[<p>Oh, I know, that probably should&#8217;ve had a ;-) instead of a :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kotarak</title>
		<link>http://cemerick.com/2009/11/03/be-mindful-of-clojures-binding/#comment-35</link>
		<dc:creator><![CDATA[kotarak]]></dc:creator>
		<pubDate>Tue, 20 Apr 2010 13:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://cemerick.com/?p=134#comment-35</guid>
		<description><![CDATA[Seeing it as a &quot;race&quot; of sort would be a bad thing. I just noticed, that both posts were very close together in terms of date. :)]]></description>
		<content:encoded><![CDATA[<p>Seeing it as a &#8220;race&#8221; of sort would be a bad thing. I just noticed, that both posts were very close together in terms of date. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chas Emerick</title>
		<link>http://cemerick.com/2009/11/03/be-mindful-of-clojures-binding/#comment-34</link>
		<dc:creator><![CDATA[Chas Emerick]]></dc:creator>
		<pubDate>Tue, 20 Apr 2010 13:10:09 +0000</pubDate>
		<guid isPermaLink="false">http://cemerick.com/?p=134#comment-34</guid>
		<description><![CDATA[I&#039;m glad it&#039;s not a race either way. :-)

Nice writeup, tho – I neglected to mention with-bindings in mine.]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m glad it&#8217;s not a race either way. :-)</p>
<p>Nice writeup, tho – I neglected to mention with-bindings in mine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kotarak</title>
		<link>http://cemerick.com/2009/11/03/be-mindful-of-clojures-binding/#comment-33</link>
		<dc:creator><![CDATA[kotarak]]></dc:creator>
		<pubDate>Tue, 20 Apr 2010 13:09:13 +0000</pubDate>
		<guid isPermaLink="false">http://cemerick.com/?p=134#comment-33</guid>
		<description><![CDATA[Ok. You got prior art. But here on the same topic: http://kotka.de/blog/2009/11/Taming_the_Bound_Seq.html]]></description>
		<content:encoded><![CDATA[<p>Ok. You got prior art. But here on the same topic: <a href="http://kotka.de/blog/2009/11/Taming_the_Bound_Seq.html" rel="nofollow">http://kotka.de/blog/2009/11/Taming_the_Bound_Seq.html</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

