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