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.com 2009-12-19T03:53:12Z http://stackoverflow.com/feeds/question/567840 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/567840/can-you-create-more-than-one-element-of-a-list-at-a-time-with-a-list-comprehensio 3 Can you create more than one element of a list at a time with a list comprehension in haskell? Paul Wicks 2009-02-20T00:19:36Z 2009-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 &lt;- [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#567859 13 Answer by vili for Can you create more than one element of a list at a time with a list comprehension in haskell? vili 2009-02-20T00:25:29Z 2009-02-20T00:25:29Z <p>you could use concat.</p> <pre><code>concat [ [(n*2),(n*3)] | n &lt;- [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#567865 4 Answer by FunctorSalad for Can you create more than one element of a list at a time with a list comprehension in haskell? FunctorSalad 2009-02-20T00:30:42Z 2009-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#568193 13 Answer by Chris Conway for Can you create more than one element of a list at a time with a list comprehension in haskell? Chris Conway 2009-02-20T03:40:59Z 2009-02-20T18:07:32Z <p>I find that extending the list comprehension makes this easier to read:</p> <pre><code>[ m | n &lt;- [1..5], m &lt;- [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 &lt;- lst, m &lt;- [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 -&gt; concatMap (\m -&gt; [m]) [2*n,3*n]) lst </code></pre> <p>The expression <code>concatMap (\m -&gt; [m])</code> is wrapping <code>m</code> up in a list in order to immediately flatten it&mdash;it is equivalent to <code>map id</code>.</p> <p>Compare this to @FunctorSalad's answer:</p> <pre><code>mult1 lst = concatMap (\n -&gt; [n*2,n*3]) lst </code></pre> <p>We've optimized away <code>concatMap (\m -&gt; [m])</code>. </p> <p>Now @vili's answer:</p> <pre><code>mult2 lst = concat [ [(n*2),(n*3)] | n &lt;- lst] </code></pre> <p>This desugars to:</p> <pre><code>mult2' lst = concat (concatMap (\n -&gt; [[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>