(defn superset? "Is set1 a superset of set2?" {:deprecated "1.2"} [set1 set2] {:tag Boolean} (and (>= (count set1) (count set2)) (every? set1 set2)))
Comments top
No comments for superset?. Log in to add a comment.