Function: semantic-find-tags-by-class

semantic-find-tags-by-class is a macro defined in find.el.gz.

Signature

(semantic-find-tags-by-class CLASS &optional TABLE)

Documentation

Find all tags of class CLASS in TABLE.

CLASS is a symbol representing the class of the token, such as variable or function. TABLE is a tag table. See semantic-something-to-tag-table.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/semantic/find.el.gz
(defmacro semantic-find-tags-by-class (class &optional table)
  "Find all tags of class CLASS in TABLE.
CLASS is a symbol representing the class of the token, such as
`variable' or `function'.
TABLE is a tag table.  See `semantic-something-to-tag-table'."
  `(semantic--find-tags-by-macro
    (eq ,class (semantic-tag-class (car tags)))
    ,table))