And
(and arguments) -> #f or value
- arguments -- Any valid values or expressions
This will return false if any of the arguments evaluates to #f. Otherwise, it returns the last value.
Examples:
- (and 1 3 "A") returns "A"
- (and 1 3 (string? 1)) returns #f
- (and 1 -3 9305) returns 9305
- (and (string? "test") (= 5 5)) returns #t
See Also: or