(position haystack needle (? from))
  haystack: a deque
  needle: any type
  from: an int (optional)
  returns an int or #n
F

Searches within a deque.

position behaves differently for arrays and strings:

When from is specified, it must be an integer index, which acts as the starting point for the search.

ends-with?
rposition