index-of
finds the first position of a value in a sequence
Usage:
(index-of coll value)Returns the zero-based index of the first matching value in a sequence. If no value matches, returns #f.
An Example
(index-of [4 8 15 16] 15)
This example returns 2.