Function: htype:category
htype:category is a byte-compiled function defined in hact.el.
Signature
(htype:category TYPE-CATEGORY)
Documentation
Return list of Elisp symbols in Hyperbole TYPE-CATEGORY in priority order.
Symbols contain category component.
TYPE-CATEGORY should be actypes, ibtypes or nil for all.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defun htype:category (type-category)
"Return list of Elisp symbols in Hyperbole TYPE-CATEGORY in priority order.
Symbols contain category component.
TYPE-CATEGORY should be `actypes', `ibtypes' or nil for all."
(let ((def-symbols (symset:get type-category 'symbols))
(symtable (symtable:select type-category)))
;; Expand def-symbols to Elisp symbols by adding prefix
(when (and def-symbols symtable)
(mapcar (lambda (sym) (symtable:get sym symtable)) def-symbols))))