every

[procedure] every pred clist1 clist2 ...

SRFI-1: Applies the predicate across the lists, returning true if the predicate returns true on every application.

ChezScheme has the same function by the name andmap, except that the lists must have the same length in Chez's.

See also any, for-all?.