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

Passes all of an iterator's items to an accumulator function in reverse order.

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

fold