(defn filter-contains1 [edn-file] (remove (partial contains? (set (read-edn-file edn-file)))))
(defn filter-contains2 [coll] (remove (partial contains? (set coll))))
(def filter-contains3 [coll] (let [coll-as-set (set coll)] (remove (partial contains? (set coll)))))
(defn my-thing [coll & stuff]
(let [s (set coll)]
...
(comp
...
(map foo)
(filter bar)
(remove (partial contains? s))
...
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clo...@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+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
---
You received this message because you are subscribed to a topic in the Google Groups "Clojure" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/clojure/H0zoF6jlY-c/unsubscribe.
To unsubscribe from this group and all its topics, send an email to clojure+u...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Tangentially:(remove even?)Will be faster than(remove (fn [i] (even? i)))because in the first case the dereference of the var 'even?' happens only once and the value inside the var will be passed to `remove` at the outset. In the second example the var dereference happens for every single item (though it's very cheap). The second example is equivalent to writing (remove #'even?)
On Tue, Jun 23, 2015 at 4:17 PM, Ghadi Shayban <gsha...@gmail.com> wrote:Tangentially:(remove even?)Will be faster than(remove (fn [i] (even? i)))because in the first case the dereference of the var 'even?' happens only once and the value inside the var will be passed to `remove` at the outset. In the second example the var dereference happens for every single item (though it's very cheap). The second example is equivalent to writing (remove #'even?)I can't seem to observe a difference between the two cases.
2015-06-24 1:25 GMT+02:00 Ben Wolfson <wol...@gmail.com>:On Tue, Jun 23, 2015 at 4:17 PM, Ghadi Shayban <gsha...@gmail.com> wrote:Tangentially:(remove even?)Will be faster than(remove (fn [i] (even? i)))because in the first case the dereference of the var 'even?' happens only once and the value inside the var will be passed to `remove` at the outset. In the second example the var dereference happens for every single item (though it's very cheap). The second example is equivalent to writing (remove #'even?)I can't seem to observe a difference between the two cases.A simple var reference like even? compiles to a fetch of its root val: @#'even?In the first case, that happens only once, passing the resulting fn object to remove. In the second case, the deref happens every time the fn is called, thus allowing for redefinition of even?.
As with all discussions involving interoperability, I'd love to see the same questions answered for the JS target too. (This would of course apply to books such as the new Clojure Applied. )
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clo...@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+u...@googlegroups.com
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 clojure+u...@googlegroups.com.