member
(member item list &key test key)
Searches list for the first element matching item and returns the sublist (tail) starting at that element, or nil if none matches. By default the comparison is eql; the optional :test keyword takes a function designator to use a different comparison, and the optional :key keyword takes a selector function applied to each element before the comparison. The result shares structure with the original list rather than being a copy.