Returns the logical AND of the supplied arguments
Supported Platforms: Windows and Mac OS
(and [expr ...])
Type: Symbol, Integer, Real, String, T, or nil
Any expression.
Type: T or nil
nil, if any of the expressions evaluate to nil; otherwise T. If and is issued without arguments, it returns T.
(setq a 103 b nil c "string") "string" (and 1.4 a c) T (and 1.4 a b c) nil