elem

Does the element occur in the structure?
Does this value exist in this list? `elem x xs` is `True` if `x` is an element of the list `xs`.
Find index of element in given list. Will return `None` if not found.
Negation of `elem`: `elem x xs` is `True` if `x` is _not_ an element of the list `xs`.