Function: kmacro-menu--map-ids
kmacro-menu--map-ids is a byte-compiled function defined in
kmacro.el.gz.
Signature
(kmacro-menu--map-ids FUNCTION)
Documentation
Apply FUNCTION to the current table's entry IDs in order.
Return a list of the output of FUNCTION.
Source Code
;; Defined in /usr/src/emacs/lisp/kmacro.el.gz
(defun kmacro-menu--map-ids (function)
"Apply FUNCTION to the current table's entry IDs in order.
Return a list of the output of FUNCTION."
(mapcar function
(mapcar #'car
(seq-sort-by #'cdar #'< tabulated-list-entries))))