Tests whether any value of test in the sequence of bindings specified by the qualifiers is true. If this is the case:
#tis returned, otherwise#f. If there are no bindings at all, in the sequence specified by the qualifiers, then the result is#f. The enumeration of values stops after the first true value encountered.
Tests whether all values of test are true. If this is the case:
#tis returned, otherwise#f. If the sequence is empty the result is#t. Enumeration stops after the first#f.
The first or last value of expression in the sequence of bindings specified by the qualifiers. Before enumeration, the result is initialized with the value of default; so this will be the result if the sequence is empty. Enumeration is terminated in
first-ecwhen the first value has been computed.