set vs hash-set

440 views
Skip to first unread message

Alan Thompson

unread,
Feb 6, 2014, 2:49:33 PM2/6/14
to clojure
OK, this one has me stumped.  What is the difference between clojure.core/set and clojure.core/hash-set  ???   The source code is almost identical.  Is one to be preferred over the other depending on circumstances?
Alan

(defn set
  "Returns a set of the distinct elements of coll."
  {:added "1.0"
   :static true}
  [coll] (clojure.lang.PersistentHashSet/create (seq coll)))


(defn hash-set
  "Returns a new hash set with supplied keys."
  {:added "1.0"
   :static true}
  ([] #{})
  ([& keys]
   (clojure.lang.PersistentHashSet/createWithCheck keys)))

Gal Dolber

unread,
Feb 6, 2014, 3:12:37 PM2/6/14
to clo...@googlegroups.com

One takes a coll and the other a list of arguments

user=> (set [1 1])

#{1}

user=> (hash-set 1 1)

#{1}



--
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.
For more options, visit https://groups.google.com/groups/opt_out.

Reply all
Reply to author
Forward
0 new messages