ormap

[procedure] ormap 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 true value.

This is equivalent to SRFI-1's any, except that ormap requires all the list be the same length.

See also any, andmap.

 code rio