Function: testcover-coverage-combine
testcover-coverage-combine is a byte-compiled function defined in
testcover.el.gz.
Signature
(testcover-coverage-combine RESULT VAL)
Documentation
Combine RESULT with VAL and return the new result.
If either argument is nil, return nil, otherwise if either argument is maybe, return maybe. Return 1value only if both arguments are 1value.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/testcover.el.gz
(defun testcover-coverage-combine (result val)
"Combine RESULT with VAL and return the new result.
If either argument is nil, return nil, otherwise if either
argument is maybe, return maybe. Return 1value only if both arguments
are 1value."
(cl-case val
(testcover-1value result)
(maybe (and result 'maybe))))