Function: semanticdb-find-result-test
semanticdb-find-result-test is a byte-compiled function defined in
db-find.el.gz.
Signature
(semanticdb-find-result-test RESULT)
Documentation
Test RESULT by accessing all the tags in the list.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
(defun semanticdb-find-result-test (result)
"Test RESULT by accessing all the tags in the list."
(if (not (semanticdb-find-results-p result))
(error "Does not pass `semanticdb-find-results-p.\n"))
(let ((len (semanticdb-find-result-length result))
(i 0))
(while (< i len)
(let ((tag (semanticdb-find-result-nth result i)))
(if (not (semantic-tag-p (car tag)))
(error "%d entry is not a tag" i)))
(setq i (1+ i)))))