Function: semantic-tag-external-member-p
semantic-tag-external-member-p is a byte-compiled function defined in
sort.el.gz.
Signature
(semantic-tag-external-member-p PARENT TAG)
Documentation
Return non-nil if PARENT is the parent of TAG.
TAG is an external member of PARENT when it is somehow tagged as having PARENT as its parent. PARENT and TAG must both be semantic tags.
The default behavior, if not overridden with
tag-external-member-p is to match :parent attribute in
the name of TAG.
If this function is overridden, use
semantic-tag-external-member-children-default to also
include the default behavior, and merely extend your own.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/sort.el.gz
(define-overloadable-function semantic-tag-external-member-p (parent tag)
"Return non-nil if PARENT is the parent of TAG.
TAG is an external member of PARENT when it is somehow tagged
as having PARENT as its parent.
PARENT and TAG must both be semantic tags.
The default behavior, if not overridden with
`tag-external-member-p' is to match :parent attribute in
the name of TAG.
If this function is overridden, use
`semantic-tag-external-member-children-default' to also
include the default behavior, and merely extend your own."
)