On Sat, Aug 27, 2016 at 12:08 AM, mond <[email protected]> wrote: > Is that the same thing or have I made a(nother) / different mistake? > > At a glance, it looks like the functions you're passing into map and filter are shaped wrong - (comp (map sse-data) (filter matching-event-client-filter)) may have been the intention. #(fn ..) is going to create a no-arg fn which returns the explicit (fn ...) when called. Both # and fn turn out to be unnecessary as you're not doing anything on top of passing through the single argument.
I have no idea if this is the cause of your error, though. Take care, Moe -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
