Function: ebrowse-name/accessor-alist
ebrowse-name/accessor-alist is a byte-compiled function defined in
ebrowse.el.gz.
Signature
(ebrowse-name/accessor-alist TREE ACCESSOR)
Documentation
Return an alist containing all members of TREE in group ACCESSOR.
ACCESSOR is the accessor function for the member list. Elements of the result have the form (NAME . ACCESSOR), where NAME is the member name.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/ebrowse.el.gz
;;; Operations on MEMBER structures/lists
(defun ebrowse-name/accessor-alist (tree accessor)
"Return an alist containing all members of TREE in group ACCESSOR.
ACCESSOR is the accessor function for the member list.
Elements of the result have the form (NAME . ACCESSOR), where NAME
is the member name."
(cl-loop for member in (funcall accessor tree)
collect (cons (ebrowse-ms-name member) accessor)))