Function: semanticdb-find-result-mapc
semanticdb-find-result-mapc is a byte-compiled function defined in
db-find.el.gz.
Signature
(semanticdb-find-result-mapc FCN RESULT)
Documentation
Apply FCN to each element of find RESULT for side-effects only.
FCN takes two arguments. The first is a TAG, and the second is a DB from whence TAG originated. Returns result.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/db-find.el.gz
(defun semanticdb-find-result-mapc (fcn result)
"Apply FCN to each element of find RESULT for side-effects only.
FCN takes two arguments. The first is a TAG, and the
second is a DB from whence TAG originated.
Returns result."
(mapc (lambda (sublst-icky)
(mapc (lambda (tag-icky)
(funcall fcn tag-icky (car sublst-icky)))
(cdr sublst-icky)))
result)
result)