Can you create more than one element of a list at a time with a list comprehension in haskell? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T03:53:12Zhttp://stackoverflow.com/feeds/question/567840http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/567840/can-you-create-more-than-one-element-of-a-list-at-a-time-with-a-list-comprehensio3Can you create more than one element of a list at a time with a list comprehension in haskell?Paul Wicks2009-02-20T00:19:36Z2009-02-20T18:07:32Z
<p>So, for example, say I had a list of numbers and I wanted to create a list that contained each number multiplied by 2 and 3. Is there any way to do something like the following, but get back a single list of numbers instead of a list of lists of numbers?</p>
<pre><code>mult_nums = [ [(n*2),(n*3)] | n <- [1..5]]
-- this returns [[2,3],[4,6],[6,9],[8,12],[10,15]]
-- but we want [2,3,4,6,6,9,8,12,10,15]
</code></pre>
http://stackoverflow.com/questions/567840/can-you-create-more-than-one-element-of-a-list-at-a-time-with-a-list-comprehensio/567859#56785913Answer by vili for Can you create more than one element of a list at a time with a list comprehension in haskell?vili2009-02-20T00:25:29Z2009-02-20T00:25:29Z<p>you could use concat.</p>
<pre><code>concat [ [(n*2),(n*3)] | n <- [1..5]]
output: [2,3,4,6,6,9,8,12,10,15]
</code></pre>
http://stackoverflow.com/questions/567840/can-you-create-more-than-one-element-of-a-list-at-a-time-with-a-list-comprehensio/567865#5678654Answer by FunctorSalad for Can you create more than one element of a list at a time with a list comprehension in haskell?FunctorSalad2009-02-20T00:30:42Z2009-02-20T00:30:42Z<p>In some similar cases concatMap can also be convenient, though here it doesn't change much:</p>
<pre>concatMap (\n -> [n*2,n*3]) [1..5]</pre>
http://stackoverflow.com/questions/567840/can-you-create-more-than-one-element-of-a-list-at-a-time-with-a-list-comprehensio/568193#56819313Answer by Chris Conway for Can you create more than one element of a list at a time with a list comprehension in haskell?Chris Conway2009-02-20T03:40:59Z2009-02-20T18:07:32Z<p>I find that extending the list comprehension makes this easier to read:</p>
<pre><code>[ m | n <- [1..5], m <- [2*n,3*n] ]
</code></pre>
<p>It might be helpful to examine exactly what this does, and how it relates to other solutions. Let's define it as a function:</p>
<pre><code>mult lst = [ m | n <- lst, m <- [2*n,3*n] ]
</code></pre>
<p>After a fashion, this <a href="http://haskell.org/onlinereport/exps.html#list-comprehensions" rel="nofollow">desugars</a> to</p>
<pre><code>mult' lst =
concatMap (\n -> concatMap (\m -> [m]) [2*n,3*n]) lst
</code></pre>
<p>The expression <code>concatMap (\m -> [m])</code> is wrapping <code>m</code> up in a list in order to immediately flatten it—it is equivalent to <code>map id</code>.</p>
<p>Compare this to @FunctorSalad's answer:</p>
<pre><code>mult1 lst = concatMap (\n -> [n*2,n*3]) lst
</code></pre>
<p>We've optimized away <code>concatMap (\m -> [m])</code>. </p>
<p>Now @vili's answer:</p>
<pre><code>mult2 lst = concat [ [(n*2),(n*3)] | n <- lst]
</code></pre>
<p>This desugars to:</p>
<pre><code>mult2' lst = concat (concatMap (\n -> [[2*n,3*n]]) lst)
</code></pre>
<p>As in the first solution above, we are unnecessarily creating a list of lists that we have to <code>concat</code> away.</p>
<p>I don't think there is a solution that uses list comprehensions, but desugars to <code>mult1</code>. My intuition is that Haskell compilers are generally clever enough that this wouldn't matter (or, alternatively, that unnecessary <code>concat</code>s are cheap due to lazy evaluation (whereas they're lethal in eager languages)). </p>