On Mar 8, 2013, at 19:59, Mark H Weaver wrote: > By the way, there's an easy way to accomplish what you want. Simply use > 'reduce' (from SRFI-1) instead of 'fold': > > (reduce max -inf.0 exact-number-list)
I was about to roll my own, but this is exactly the case where fold doesn't work and reduce does. Thank you, Daniel