Hi,

On 24 Aug., 03:08, gary ng <garyng2...@gmail.com> wrote:

> (map #(for [s %2] (map * %1 s)) target signal)
>
> Though personally I still think the %2 %1 is a bit confusing.- Zitierten Text 
> ausblenden -

If you don't like it, don't use it.You can always give things
meaningful names.

(for [[signals target] (map vector signals-list target-list)
      signal           signals]
  (map * signal target))

Sincerely
Meikel

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to