Function: eieio-pcase-slot-index-from-index-table
eieio-pcase-slot-index-from-index-table is a byte-compiled function
defined in eieio.el.gz.
Signature
(eieio-pcase-slot-index-from-index-table INDEX-TABLE SLOT)
Documentation
Find the index to pass to aref to access SLOT.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/eieio.el.gz
(defun eieio-pcase-slot-index-from-index-table (index-table slot)
"Find the index to pass to `aref' to access SLOT."
(let ((index (gethash slot index-table)))
(if index (+ (eval-when-compile eieio--object-num-slots)
index))))