(nth-back n it)
  n: an int
  it: an iterable
  returns any type
F

Returns a double-ended iterator's nth-from-last item.

Equivalent to nth, except that it invokes iter-next-back! on the base iterator, rather than iter-next!.

nth
any?