andmap

[procedure] andmap procedure list1 list2 ...

ChezScheme, MzScheme: applies procedure to corresponding elements of the lists in sequence until either the lists run out or procedure returns a false value.

This is equivalent to SRFI-1's every, except that andmap requires all lists be the same length.

See also ormap, every, for-all?.

 rio orange