(rfind f it)
  f: a callable
  it: an iterable
  returns any type
F

Returns the first of an iterator's items which match a predicate, searching backwards.

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

find
fold