Revision; mention the base case of generator-every explicitly.

generator-every pred gen
   Applies pred on each item from generator gen.  As soon as it yields #f, the procedure
   returns #f without consuming the rest of gen.  If gen is exhausted, the last value
   returned from pred is returned.  As a base case, if gen doesn't yield any items,
   #t is returned.

On Sun, Nov 8, 2015 at 2:10 AM, John Cowan <xxxxxx@mercury.ccil.org> wrote:
Shiro Kawai scripsit:

> generator-any is defined to return #t when any of the item satisfy
> the predicate, but srfi-1's any returns the true value the predicate
> returns.

You are of course correct, and I'll fix this in the next release.

--
John Cowan          http://www.ccil.org/~cowan        xxxxxx@ccil.org
There are three kinds of people in the world:
those who can count, and those who can't.