Thanks everyone for the useful feedback. I&#39;ll check out all three options. :-)<br><br><div class="gmail_quote">On Fri, Mar 22, 2013 at 12:23 PM, Pierpaolo Bernardi <span dir="ltr">&lt;<a href="mailto:olopierpa@gmail.com" target="_blank">olopierpa@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="HOEnZb"><div class="h5">On Thu, Mar 21, 2013 at 11:55 PM, Tim Nelson &lt;<a href="mailto:tbnelson@gmail.com">tbnelson@gmail.com</a>&gt; wrote:<br>

&gt; Dear All,<br>
&gt;<br>
&gt; I&#39;ve recently started hacking Racket again, and am loving the for/*<br>
&gt; constructs.<br>
&gt; Awesome stuff. However, I have two questions about for/hash.<br>
&gt;<br>
&gt; (1) How can I *not* add a hash entry for a given iteration?<br>
&gt;<br>
&gt; When I use for/list, can I abuse the nature of empty and append* (I cringe<br>
&gt; as I write this):<br>
&gt;<br>
&gt; (append* (for/list ([i &#39;(1 2 3 4 5)])<br>
&gt;              (cond [(even? i) (list (* i 100))]<br>
&gt;                    [else empty])))<br>
&gt;<br>
&gt; Surely there is a better way to do this for for/list, and a way in general<br>
&gt; for for/hash?<br>
&gt;<br>
&gt; (2) How can I add multiple entries (that is, &gt;1 key-value pair) in a given<br>
&gt; iteration?<br>
&gt;<br>
&gt; Again, using for/list I can cheat via append*:<br>
&gt;<br>
&gt; (append* (for/list ([i &#39;(1 2 3 4 5)])<br>
&gt;            (list (* i 100) (* i 200))))<br>
&gt;<br>
&gt; What&#39;s the right way to do this in for/hash?<br>
<br>
</div></div>To both of the questions, the answer is for/fold!<br>
<br>
Cheers<br>
<span class="HOEnZb"><font color="#888888">P.<br>
</font></span></blockquote></div><br>