set?
tests whether the provided forms are sets
Usage:
(set? form+) (!set? form+)If all forms evaluate to sets, this function returns #t (true). Otherwise it returns #f (false).
An Example
(set? #{1 2 3} (set 4 5 6))