Thx for hints.
> As for the main function, my tendency would be to avoid taking cases on > the number of args > Is that due to performance implications, I mean that it takes longer to check cases every time? Or just a style. BTW, I followed https://github.com/clojure/clojure/blob/master/src/clj/clojure/core.clj#L1084 (def mimasuco (juxt #(apply min %) #(apply max %) #(apply + %) count)) > It indeed seems that juxt scans source multiple times, which is something I wanted to avoid. -- 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.
