Name
and-map -- Apply PROC repeatedly, returning the first false value.
Synopsis
(and-map proc first . rest)
Description
Apply PROC repeatedly, returning the first false value.
PROC is applied to elements of FIRST and the lists comprising REST
much as map would do it. If proc never returns a false value, return
#t instead. If all the lists are empty, return #t.