Function: ede-map-any-target-p

ede-map-any-target-p is a byte-compiled function defined in ede.el.gz.

Signature

(ede-map-any-target-p ARG &rest ARGS)

Implementations

(ede-map-any-target-p (THIS ede-project) PROC) in `ede.el'.

For project THIS, map PROC to all targets and return if any non-nil. Return the first non-nil value returned by PROC.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/ede.el.gz
(cl-defmethod ede-map-any-target-p ((this ede-project) proc)
  "For project THIS, map PROC to all targets and return if any non-nil.
Return the first non-nil value returned by PROC."
  (cl-some proc (oref this targets)))