API for set
- ()
by Jason Wolfe
clojure-contrib is now deprecated
clojure-contrib is no longer being developed or maintained.
Rather than a single, monolithic, contributions library, Clojure now has
a set of separate libraries for each unit of functionality. The libraries
are in the Clojure GitHub organization at
https://github.com/clojure.
API documentation of the libraries can be found at
https://clojure.github.io.
If you're looking for a specific function or namespace from the old
clojure-contrib, see
"Where Did Clojure.Contrib Go".
Full namespace name:
clojure.contrib.set
Overview
Clojure functions for operating on sets (supplemental to clojure.set)
Public Variables and Functions
proper-subset?
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (proper-subset? set1 set2)
Is s1 a proper subset of s2?
Source
proper-superset?
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (proper-superset? set1 set2)
Is s1 a proper superset of s2?
Source
subset?
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (subset? set1 set2)
Is set1 a subset of set2?
Source
superset?
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (superset? set1 set2)
Is set1 a superset of set2?
Source