Function: vtable--get-value
vtable--get-value is a byte-compiled function defined in vtable.el.gz.
Signature
(vtable--get-value OBJECT INDEX COLUMN TABLE)
Documentation
Compute a cell value.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/vtable.el.gz
;;; Generating the table.
(defun vtable--get-value (object index column table)
"Compute a cell value."
(cond
((vtable-column-getter column)
(funcall (vtable-column-getter column)
object table))
((vtable-getter table)
(funcall (vtable-getter table)
object index table))
;; No getter functions; standard getters.
((stringp object)
object)
(t
(elt object index))))