Function: symtable:get
symtable:get is a byte-compiled function defined in hact.el.
Signature
(symtable:get SYMBOL-OR-NAME SYMTABLE)
Documentation
Return Elisp symbol for Hyperbole SYMBOL-OR-NAME if it is in SYMTABLE.
Otherwise, return nil. Caller must ensure SYMBOL-OR-NAME is a symbol or string.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hact.el
(defun symtable:get (symbol-or-name symtable)
"Return Elisp symbol for Hyperbole SYMBOL-OR-NAME if it is in SYMTABLE.
Otherwise, return nil. Caller must ensure SYMBOL-OR-NAME is a symbol
or string."
(symtable:operate #'gethash symbol-or-name symtable))