Function: htype:symbol

htype:symbol is an autoloaded and byte-compiled function defined in hact.el.

Signature

(htype:symbol TYPE TYPE-CATEGORY)

Documentation

Return possibly new Hyperbole type symbol composed from TYPE and TYPE-CATEGORY.

TYPE and TYPE-CATEGORY are both symbols. TYPE-CATEGORY must be one of actypes or ibtypes; if not, return nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
;;; ------------------------------------------------------------------------

;;;###autoload
(defun   htype:symbol (type type-category)
  "Return possibly new Hyperbole type symbol composed from TYPE and TYPE-CATEGORY.
TYPE and TYPE-CATEGORY are both symbols.  TYPE-CATEGORY must be one of
`actypes' or `ibtypes'; if not, return nil."
  (when (memq type-category '(actypes ibtypes))
    (intern (concat (symbol-name type-category) "::" (symbol-name type)))))