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