Member

(member value list) -> list or #f

If the given value is a member of the given list, returns a new list that starts with the first instance of that value and also contains all elements of the list that follow that point.

Example:

>> (member 1 '(3 1 2))
:: (1 2)