Function: ede-map-subprojects

ede-map-subprojects is a byte-compiled function defined in ede.el.gz.

Signature

(ede-map-subprojects ARG &rest ARGS)

Implementations

((this ede-project) proc) in `ede.el'.

For object THIS, execute PROC on all direct subprojects. This function does not apply PROC to sub-sub projects. See also `ede-map-all-subprojects'.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
;; other types of mapping
(cl-defmethod ede-map-subprojects ((this ede-project) proc)
  "For object THIS, execute PROC on all direct subprojects.
This function does not apply PROC to sub-sub projects.
See also `ede-map-all-subprojects'."
  (mapcar proc (oref this subproj)))