@potetm yeah, even more interestingly, this works:
(clojure.set/intersection #{1 2 3} [4 5 6])
but this doesn’t:
(clojure.set/intersection [1 2 3] #{4 5 6})
Accidental typing 🤷♂️
Top-level
@potetm yeah, even more interestingly, this works: (clojure.set/intersection #{1 2 3} [4 5 6]) but this doesn’t: (clojure.set/intersection [1 2 3] #{4 5 6}) Accidental typing 🤷♂️ No comments
|