contains?
tests whether a mapped value contains a key
Usage:
(contains? coll key)Returns #t if coll can resolve key, otherwise #f. This works with mapped lookup types such as objects and sets.
An Example
(contains? #{:name :age} :name)
This example returns #t.