Function: gnus-and

gnus-and is a byte-compiled function defined in gnus-util.el.gz.

Signature

(gnus-and &rest ELEMENTS)

Documentation

Return non-nil if all ELEMENTS are non-nil.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/gnus-util.el.gz
(defun gnus-and (&rest elements)
  "Return non-nil if all ELEMENTS are non-nil."
  (not (memq nil elements)))